Skip to content

Commit 160b770

Browse files
authored
Bump version to v0.27 (#1185)
1 parent 25051ea commit 160b770

File tree

3 files changed

+30
-3
lines changed

3 files changed

+30
-3
lines changed

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
0.27.0 (2024-08-09)
2+
===
3+
4+
## What's Changed
5+
6+
### Policy
7+
* Clear pin bits by @udesou in https://github.com/mmtk/mmtk-core/pull/1166
8+
* Set the unlog bits for objects in the bootimage by @k-sareen in https://github.com/mmtk/mmtk-core/pull/1168
9+
* Fix bug in line mark when `MARK_LINE_AT_SCAN_TIME=false` by @k-sareen in https://github.com/mmtk/mmtk-core/pull/1171
10+
11+
### API
12+
* Require object reference to be aligned by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1159
13+
* Internal pointer support by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1165
14+
* Heap traversal by @wks in https://github.com/mmtk/mmtk-core/pull/1174
15+
16+
### CI
17+
* Parallelize and workaround CI style checks by @wks in https://github.com/mmtk/mmtk-core/pull/1184
18+
19+
### Misc
20+
* Extensible eBPF timeline attributes by @wks in https://github.com/mmtk/mmtk-core/pull/1162
21+
* Only map with executable permissions when using code space by @k-sareen in https://github.com/mmtk/mmtk-core/pull/1176
22+
* Fix style check for Rust 1.80 by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1178
23+
* Extra assertions for mutators and epilogues by @wks in https://github.com/mmtk/mmtk-core/pull/1182
24+
* Refactor iterate_meta_bits by @wks in https://github.com/mmtk/mmtk-core/pull/1181
25+
26+
**Full Changelog**: https://github.com/mmtk/mmtk-core/compare/v0.26.0...v0.27.0
27+
128
0.26.0 (2024-07-01)
229
===
330

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mmtk"
3-
version = "0.26.0"
3+
version = "0.27.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.26.0", path = "macros/" }
41+
mmtk-macros = { version="0.27.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.26.0"
4+
version = "0.27.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)