Skip to content

Commit

Permalink
added CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
pnerg committed Jan 21, 2021
1 parent d00c880 commit f66aab3
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 1 deletion.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

All notable changes to this project will be documented in this file.

## [1.0.0]

First release.

### Added

Support for:

- class-loading - `withClassLoadingInfo`
- memory - `withMemoryInfo`
- runtime - `withRuntimeInfo`
- thread - `withThreadInfo`

### Changed
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,27 @@ Would produce something like:
This library uses [minimal-json](https://github.com/ralfstx/minimal-json) for managing Json format.
It is a small no-dependencies library fit for the purpose.

# Download

Both libraries are cross-compiled for Scala 2.11, 2.12 and 2.13.
Simply add the following dependency:

sbt

```
"org.dmonix" %% "jmx-runtime-json" % [version]
```

maven

```
<dependency>
<groupId>org.dmonix</groupId>
<artifactId>jmx-runtime-json</artifactId>
<version>[version]</version>
</dependency>
```

# License

The library is licensed under [Apache 2](LICENSE)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/dmonix/jmx/JMXJsonBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public JMXJsonBuilder withMemoryInfo() {
* }
* </pre>
*
* @return
* @return itself
*/
public JMXJsonBuilder withClassLoadingInfo() {
ClassLoadingMXBean mbean = ManagementFactory.getClassLoadingMXBean();
Expand Down

0 comments on commit f66aab3

Please sign in to comment.