Skip to content

Commit

Permalink
Bump version to v0.23 (#1082)
Browse files Browse the repository at this point in the history
  • Loading branch information
qinsoon authored Feb 9, 2024
1 parent 7cafe56 commit 2d3677d
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
0.23.0 (2024-02-09)
===

## What's Changed

### API
* Ask from binding if GC is disabled by @udesou in https://github.com/mmtk/mmtk-core/pull/1075

### CI
* Stop using the deprecated set-output in our CI configs by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1059
* Rename CI tests to minimal/extended tests by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1073
* Properly get PR number for merge group by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1077

### Misc
* MMTk Enhancement Proposal by @wks in https://github.com/mmtk/mmtk-core/pull/1056
* Timeline visualization tool by @wks in https://github.com/mmtk/mmtk-core/pull/1022
* Add a document for project principles by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1069
* Fix un-cleared VO bits for contiguous monotone PR by @wks in https://github.com/mmtk/mmtk-core/pull/1071
* Use live memory to estimate collection pages in mem balancer by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1050
* Fix issues in sanity GC by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1079

**Full Changelog**: https://github.com/mmtk/mmtk-core/compare/v0.22.1...v0.23.0

0.22.1 (2024-01-11)
===

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mmtk"
version = "0.22.1"
version = "0.23.0"
authors = ["The MMTk Developers <>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -38,7 +38,7 @@ log = { version = "0.4", features = ["max_level_trace", "release_max_level_off"]
memoffset = "0.9"
mimalloc-sys = { version = "0.1.6", optional = true }
# 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.
mmtk-macros = { version="0.22.1", path = "macros/" }
mmtk-macros = { version="0.23.0", path = "macros/" }
num_cpus = "1.8"
num-traits = "0.2"
pfm = { version = "0.1.1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mmtk-macros"
# the macro crate uses the same version as mmtk-core
version = "0.22.1"
version = "0.23.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "MMTk macros provides procedural macros used by mmtk-core."
Expand Down

0 comments on commit 2d3677d

Please sign in to comment.