Skip to content

Commit 9a676e6

Browse files
authored
Bump version to v0.20 (#966)
1 parent cb14881 commit 9a676e6

File tree

3 files changed

+44
-3
lines changed

3 files changed

+44
-3
lines changed

CHANGELOG.md

+41
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,43 @@
1+
0.20.0 (2023-09-29)
2+
===
3+
4+
## What's Changed
5+
6+
### Plan
7+
* Refactor derive macros and add HasSpaces trait by @wks in https://github.com/mmtk/mmtk-core/pull/934
8+
* Make MarkCompact LOS support 2nd transitive closure by @wenyuzhao in https://github.com/mmtk/mmtk-core/pull/944
9+
* Disabling PrepareMutator from PlanConstraints by @wks in https://github.com/mmtk/mmtk-core/pull/964
10+
11+
### Policy
12+
* Add ExternalPageResource and allow discontiguous VM space by @qinsoon in https://github.com/mmtk/mmtk-core/pull/864
13+
* Discontiguous mark compact space support by @wenyuzhao in https://github.com/mmtk/mmtk-core/pull/939
14+
* Discontiguous PageProtect GC support by @wenyuzhao in https://github.com/mmtk/mmtk-core/pull/946
15+
* Fix vo-bit reset for discontiguous space by @wenyuzhao in https://github.com/mmtk/mmtk-core/pull/948
16+
17+
### API
18+
* Boot-time configurable heap constants by @wenyuzhao in https://github.com/mmtk/mmtk-core/pull/899
19+
* This PR enables transitively pinning (TP) objects from particular roots for Immix/StickyImmix by @udesou in https://github.com/mmtk/mmtk-core/pull/897
20+
* Let VM control when or if to read env var options by @wks in https://github.com/mmtk/mmtk-core/pull/955
21+
22+
### Misc
23+
* Update doc comment of Scanning::process_weak_refs by @wks in https://github.com/mmtk/mmtk-core/pull/919
24+
* Binding test for Ruby by @wks in https://github.com/mmtk/mmtk-core/pull/916
25+
* Fix api-check CI by @wks in https://github.com/mmtk/mmtk-core/pull/923
26+
* Fix default value for RUBY_BINDING_REPO by @qinsoon in https://github.com/mmtk/mmtk-core/pull/926
27+
* Add a ready-to-merge check by @qinsoon in https://github.com/mmtk/mmtk-core/pull/910
28+
* Run ready to merge check for PRs by @qinsoon in https://github.com/mmtk/mmtk-core/pull/928
29+
* Remove cast ref to mut everywhere by @playXE in https://github.com/mmtk/mmtk-core/pull/893
30+
* Benchmark Rust code by @qinsoon in https://github.com/mmtk/mmtk-core/pull/933
31+
* Fix broken links in the tutorial by @caizixian in https://github.com/mmtk/mmtk-core/pull/936
32+
* Update doc to add a section for LTO by @qinsoon in https://github.com/mmtk/mmtk-core/pull/937
33+
* Add CARGO_INCREMENTAL=0 to work around clippy 1.72 bug by @qinsoon in https://github.com/mmtk/mmtk-core/pull/938
34+
* Fix issues for cargo fmt in 1.72 by @qinsoon in https://github.com/mmtk/mmtk-core/pull/940
35+
* Use atomic operations for SFT map and remove unsafe code by @qinsoon in https://github.com/mmtk/mmtk-core/pull/931
36+
* Fix outdated Rust version in README by @qinsoon in https://github.com/mmtk/mmtk-core/pull/942
37+
* Fix length of Map64::descriptor_map by @wks in https://github.com/mmtk/mmtk-core/pull/956
38+
39+
**Full Changelog**: https://github.com/mmtk/mmtk-core/compare/v0.19.0...v0.20.0
40+
141
0.19.0 (2023-08-18)
242
===
343

@@ -76,6 +116,7 @@
76116
* @ClSlaid made their first contribution in https://github.com/mmtk/mmtk-core/pull/843
77117
* @playXE made their first contribution in https://github.com/mmtk/mmtk-core/pull/880
78118

119+
79120
**Full Changelog**: https://github.com/mmtk/mmtk-core/compare/v0.18.0...v0.19.0
80121

81122
0.18.0 (2023-04-03)

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mmtk"
3-
version = "0.19.0"
3+
version = "0.20.0"
44
authors = ["The MMTk Developers <>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -37,7 +37,7 @@ log = { version = "0.4", features = ["max_level_trace", "release_max_level_off"]
3737
memoffset = "0.9"
3838
mimalloc-sys = { version = "0.1.6", optional = true }
3939
# MMTk macros
40-
mmtk-macros = { version = "0.19.0", path = "macros/" }
40+
mmtk-macros = { version = "0.20.0", path = "macros/" }
4141
num_cpus = "1.8"
4242
num-traits = "0.2"
4343
pfm = { version = "0.1.0-beta.3", optional = true }

macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "mmtk-macros"
33
# the macro crate uses the same version as mmtk-core
4-
version = "0.19.0"
4+
version = "0.20.0"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
description = "MMTk macros provides procedural macros used by mmtk-core."

0 commit comments

Comments
 (0)