diff --git a/CHANGELOG.md b/CHANGELOG.md index 12f3049b..3f816ed6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +0.16.0 (2022-12-06) +=== + +* Support MMTk's native mark sweep plan. +* Use MMTk's large code and non moving semantics. +* Update to mmtk-core 0.16.0. + 0.15.0 (2022-09-20) === diff --git a/mmtk/Cargo.lock b/mmtk/Cargo.lock index 822b470f..feb041b6 100644 --- a/mmtk/Cargo.lock +++ b/mmtk/Cargo.lock @@ -357,8 +357,8 @@ dependencies = [ [[package]] name = "mmtk" -version = "0.15.0" -source = "git+https://github.com/mmtk/mmtk-core.git?rev=6e1b4df8e6bf41f86c24824b4c664f05b2b9fbfb#6e1b4df8e6bf41f86c24824b4c664f05b2b9fbfb" +version = "0.16.0" +source = "git+https://github.com/mmtk/mmtk-core.git?rev=4aa643773ec3ec9c4f47f696533bdd56554c03df#4aa643773ec3ec9c4f47f696533bdd56554c03df" dependencies = [ "atomic", "atomic-traits", @@ -383,8 +383,8 @@ dependencies = [ [[package]] name = "mmtk-macros" -version = "0.15.0" -source = "git+https://github.com/mmtk/mmtk-core.git?rev=6e1b4df8e6bf41f86c24824b4c664f05b2b9fbfb#6e1b4df8e6bf41f86c24824b4c664f05b2b9fbfb" +version = "0.16.0" +source = "git+https://github.com/mmtk/mmtk-core.git?rev=4aa643773ec3ec9c4f47f696533bdd56554c03df#4aa643773ec3ec9c4f47f696533bdd56554c03df" dependencies = [ "proc-macro-error", "proc-macro2", @@ -394,7 +394,7 @@ dependencies = [ [[package]] name = "mmtk_jikesrvm" -version = "0.15.0" +version = "0.16.0" dependencies = [ "lazy_static", "libc", diff --git a/mmtk/Cargo.toml b/mmtk/Cargo.toml index 3412c938..48d39865 100644 --- a/mmtk/Cargo.toml +++ b/mmtk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mmtk_jikesrvm" -version = "0.15.0" +version = "0.16.0" authors = [" <>"] rust-version = "1.59.0" @@ -28,7 +28,7 @@ log = {version = "0.4", features = ["max_level_trace", "release_max_level_off"] # - change branch/rev # - 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 = "6e1b4df8e6bf41f86c24824b4c664f05b2b9fbfb" } +mmtk = { git = "https://github.com/mmtk/mmtk-core.git", rev = "4aa643773ec3ec9c4f47f696533bdd56554c03df" } # Uncomment the following to build locally - if you change the path locally, do not commit the change in a PR # mmtk = { path = "../repos/mmtk-core" }