From f5e608a6951b8548c41a5814978280d548fbaad3 Mon Sep 17 00:00:00 2001 From: Yi Lin Date: Tue, 10 Aug 2021 13:16:27 +1000 Subject: [PATCH 1/2] Bump version to v0.6 --- mmtk/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mmtk/Cargo.toml b/mmtk/Cargo.toml index 3fd768bd..7a24b502 100644 --- a/mmtk/Cargo.toml +++ b/mmtk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mmtk_openjdk" -version = "0.5.0" +version = "0.6.0" authors = [" <>"] [lib] @@ -20,7 +20,7 @@ lazy_static = "1.1" # - 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 = "093da769a71067dcd4f37db6f453213e7dace660" } +mmtk = { git = "https://github.com/mmtk/mmtk-core.git", rev = "8465b166cecfffed5615753c46bc8e9d032a5b82" } # Uncomment the following to build locally # mmtk = { path = "../repos/mmtk-core" } From 9d0c64c76cc5fee1e37c55b7e98f1d0889853913 Mon Sep 17 00:00:00 2001 From: Yi Lin Date: Tue, 10 Aug 2021 13:25:42 +1000 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5922110..029124ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +0.6.0 (2021-08-10) +=== + +* Supports the `Immix` plan. +* Uses side mark bit by default. Adds a feature 'mark_bit_in_header' to switch to in-header mark bit. +* Adds a size check for allocation so over-sized objects will be allocated to large object space. +* Updates to mmtk-core 0.6.0. + 0.5.0 (2021-06-28) ===