diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bed15be..706c5f7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +0.26.0 (2024-07-01) +=== + +## What's Changed +* Rename edge to slot by @wks in https://github.com/mmtk/mmtk-openjdk/pull/274 +* Fix deadlock related to safepoint sync. by @wks in https://github.com/mmtk/mmtk-openjdk/pull/279 +* Add option to put forwarding bits on the side by @wks in https://github.com/mmtk/mmtk-openjdk/pull/277 + +**Full Changelog**: https://github.com/mmtk/mmtk-openjdk/compare/v0.25.0...v0.26.0 + 0.25.0 (2024-05-17) === diff --git a/mmtk/Cargo.lock b/mmtk/Cargo.lock index 05c623f1..724d7882 100644 --- a/mmtk/Cargo.lock +++ b/mmtk/Cargo.lock @@ -431,8 +431,8 @@ dependencies = [ [[package]] name = "mmtk" -version = "0.25.0" -source = "git+https://github.com/mmtk/mmtk-core.git?rev=a9b619a4ee18a4f83209f930f8c48a3b63ee478c#a9b619a4ee18a4f83209f930f8c48a3b63ee478c" +version = "0.26.0" +source = "git+https://github.com/mmtk/mmtk-core.git?rev=6cae51c40104d84bb74598ab3eba4f9ef8173e8e#6cae51c40104d84bb74598ab3eba4f9ef8173e8e" dependencies = [ "atomic", "atomic-traits", @@ -466,8 +466,8 @@ dependencies = [ [[package]] name = "mmtk-macros" -version = "0.25.0" -source = "git+https://github.com/mmtk/mmtk-core.git?rev=a9b619a4ee18a4f83209f930f8c48a3b63ee478c#a9b619a4ee18a4f83209f930f8c48a3b63ee478c" +version = "0.26.0" +source = "git+https://github.com/mmtk/mmtk-core.git?rev=6cae51c40104d84bb74598ab3eba4f9ef8173e8e#6cae51c40104d84bb74598ab3eba4f9ef8173e8e" dependencies = [ "proc-macro-error", "proc-macro2", @@ -477,7 +477,7 @@ dependencies = [ [[package]] name = "mmtk_openjdk" -version = "0.25.0" +version = "0.26.0" dependencies = [ "atomic", "built", diff --git a/mmtk/Cargo.toml b/mmtk/Cargo.toml index 2d448883..cddf0c26 100644 --- a/mmtk/Cargo.toml +++ b/mmtk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mmtk_openjdk" -version = "0.25.0" +version = "0.26.0" authors = [" <>"] rust-version = "1.71.1" build = "build.rs" @@ -34,7 +34,7 @@ cfg-if = "1.0" # - change branch # - change repo name # But other changes including adding/removing whitespaces in commented lines may break the CI. -mmtk = { git = "https://github.com/mmtk/mmtk-core.git", rev = "a9b619a4ee18a4f83209f930f8c48a3b63ee478c" } +mmtk = { git = "https://github.com/mmtk/mmtk-core.git", rev = "6cae51c40104d84bb74598ab3eba4f9ef8173e8e" } # Uncomment the following to build locally # mmtk = { path = "../repos/mmtk-core" }