Skip to content

Commit 2d3677d

Browse files
authored
Bump version to v0.23 (#1082)
1 parent 7cafe56 commit 2d3677d

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
0.23.0 (2024-02-09)
2+
===
3+
4+
## What's Changed
5+
6+
### API
7+
* Ask from binding if GC is disabled by @udesou in https://github.com/mmtk/mmtk-core/pull/1075
8+
9+
### CI
10+
* Stop using the deprecated set-output in our CI configs by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1059
11+
* Rename CI tests to minimal/extended tests by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1073
12+
* Properly get PR number for merge group by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1077
13+
14+
### Misc
15+
* MMTk Enhancement Proposal by @wks in https://github.com/mmtk/mmtk-core/pull/1056
16+
* Timeline visualization tool by @wks in https://github.com/mmtk/mmtk-core/pull/1022
17+
* Add a document for project principles by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1069
18+
* Fix un-cleared VO bits for contiguous monotone PR by @wks in https://github.com/mmtk/mmtk-core/pull/1071
19+
* Use live memory to estimate collection pages in mem balancer by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1050
20+
* Fix issues in sanity GC by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1079
21+
22+
**Full Changelog**: https://github.com/mmtk/mmtk-core/compare/v0.22.1...v0.23.0
23+
124
0.22.1 (2024-01-11)
225
===
326

Cargo.toml

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