Skip to content

Commit 6cae51c

Browse files
authored
Bump version to v0.26 (#1161)
This PR bumps the version to v0.26.
1 parent 06adfb0 commit 6cae51c

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.26.0 (2024-07-01)
2+
===
3+
4+
## What's Changed
5+
6+
### Policy
7+
* Clear side forwarding bits properly by @wks in https://github.com/mmtk/mmtk-core/pull/1138
8+
* Fix mark bit clearing in PrepareChunkMap by @wks in https://github.com/mmtk/mmtk-core/pull/1148
9+
* Let MarkSweepSpace use BlockPageResource by @wks in https://github.com/mmtk/mmtk-core/pull/1150
10+
* Add SweepChunk to native MarkSweepSpace by @wks in https://github.com/mmtk/mmtk-core/pull/1158
11+
12+
### API
13+
* Rename edge to slot by @wks in https://github.com/mmtk/mmtk-core/pull/1134
14+
15+
### Documentation
16+
* Fix broken link and stale descriptions in doc by @wks in https://github.com/mmtk/mmtk-core/pull/1139
17+
* API migration guide. by @wks in https://github.com/mmtk/mmtk-core/pull/1133
18+
* Add back `DummyVM` as a part of the porting guide. Minor changes to MMTk initialization in the porting guide. by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1142
19+
* Fix broken link to mmtk.h by @wks in https://github.com/mmtk/mmtk-core/pull/1149
20+
21+
### Misc
22+
* Fix clippy warnings for Rust 1.79 by @wks in https://github.com/mmtk/mmtk-core/pull/1151
23+
* Display number of slots in timeline visualization by @wks in https://github.com/mmtk/mmtk-core/pull/1154
24+
25+
**Full Changelog**: https://github.com/mmtk/mmtk-core/compare/v0.25.0...v0.26.0
26+
127
0.25.0 (2024-05-17)
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.25.0"
3+
version = "0.26.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.25.0", path = "macros/" }
41+
mmtk-macros = { version="0.26.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.25.0"
4+
version = "0.26.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)