Skip to content

Commit

Permalink
Bump version and update changelog (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcoh authored Jun 4, 2024
1 parent c9e25b8 commit 1be778b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# 0.2 (May 17th 2024)
# 0.2.1 (June 4th, 2024)
* Add `JMX` APIs to Java prelude. These allow querying the current memory usage of the JVM.

# 0.2 (May 17th, 2024)
This release contains several breaking changes to be aware of:
1. The public API has been simplfied: Duchess references are now "global" references by default. The `to_rust`, `global`, and `execute` combinators have all been merged. You now invoke `execute` and then the result depends on the return value: returning a `Java<T>` will create a global reference (matching the previous behavior of `global`), and returning a Rust value like `String` will invoke the "to rust" conversion (like `to_rust` used to do). For context and examples of upgrading see https://github.com/duchess-rs/duchess/pull/147.

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[workspace]

[workspace.package]
version = "0.2.0"
version = "0.2.1"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/duchess-rs/duchess"
homepage = "https://duchess-rs.github.io/duchess/"
Expand All @@ -18,7 +18,7 @@ readme = "README.md"

[dependencies]
derive_more = "0.99.17"
duchess-macro = { path = "macro", version = "0.2.0" }
duchess-macro = { path = "macro", version = "0.2.1" }
jni-sys = "0.3.0"
cesu8 = "1.1.0"
once_cell = "1.17.1"
Expand Down

0 comments on commit 1be778b

Please sign in to comment.