Skip to content

Commit c4fdce0

Browse files
authored
Bump version to v0.28 (#1212)
Merge this PR after #1208 and #1211.
1 parent de10fa4 commit c4fdce0

File tree

3 files changed

+29
-3
lines changed

3 files changed

+29
-3
lines changed

CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
0.28.0 (2024-09-27)
2+
===
3+
4+
## What's Changed
5+
6+
### API
7+
* Require ObjectReference to point inside object by @wks in https://github.com/mmtk/mmtk-core/pull/1195
8+
* Return if a GC ran or not for `handle_user_collection_request` by @k-sareen in https://github.com/mmtk/mmtk-core/pull/1205
9+
10+
### CI
11+
* Update ci-perf-kit to 0.7.6 by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1199
12+
* Update ci-perf-kit to plot epoch by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1208
13+
14+
### Misc
15+
* Skip iterating through unallocated memory for `MonotonePageResource` by @k-sareen in https://github.com/mmtk/mmtk-core/pull/1189
16+
* Fix find_last_non_zero_bit, and align metadata address before converting to data address. by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1188
17+
* Panic message and outdated comments by @wks in https://github.com/mmtk/mmtk-core/pull/1191
18+
* Filter the result for find_prev_non_zero_value_fast to make sure it is in the search range by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1192
19+
* Assert OBJECT_REF_OFFSET_LOWER_BOUND invariant by @wks in https://github.com/mmtk/mmtk-core/pull/1194
20+
* Minor fixes by @wks in https://github.com/mmtk/mmtk-core/pull/1196
21+
* Add a feature immix_stress_copying by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1202
22+
* Update migration guide for #1205 by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1211
23+
24+
25+
**Full Changelog**: https://github.com/mmtk/mmtk-core/compare/v0.27.0...v0.28.0
26+
127
0.27.0 (2024-08-09)
228
===
329

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mmtk"
3-
version = "0.27.0"
3+
version = "0.28.0"
44
authors = ["The MMTk Developers <>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -38,7 +38,7 @@ log = { version = "0.4", features = ["max_level_trace", "release_max_level_off"]
3838
memoffset = "0.9"
3939
mimalloc-sys = { version = "0.1.6", optional = true }
4040
# MMTk macros - we have to specify a version here in order to publish the crate, even though we use the dependency from a local path.
41-
mmtk-macros = { version="0.27.0", path = "macros/" }
41+
mmtk-macros = { version="0.28.0", path = "macros/" }
4242
num_cpus = "1.8"
4343
num-traits = "0.2"
4444
pfm = { version = "0.1.1", 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.27.0"
4+
version = "0.28.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)