Skip to content

Commit

Permalink
Bump version to v0.24 (#1104)
Browse files Browse the repository at this point in the history
  • Loading branch information
qinsoon authored Apr 8, 2024
1 parent dc80b3e commit 86518d2
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/micro-bm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
with:
repository: mmtk/ci-perf-kit
token: ${{ secrets.GITHUB_TOKEN }}
ref: "0.7.4"
ref: "0.7.5"
path: ci-perf-kit
submodules: true
# Use rust-toolchain in the trunk (it doesnt matter much - if the toolchains defined in the trunk and the branch are different, we cant run anyway)
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/perf-baseline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
with:
token: ${{ secrets.CI_ACCESS_TOKEN }}
repository: mmtk/ci-perf-kit
ref: "0.7.4"
ref: "0.7.5"
path: ci-perf-kit
submodules: true
# setup
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
with:
token: ${{ secrets.CI_ACCESS_TOKEN }}
repository: mmtk/ci-perf-kit
ref: "0.7.4"
ref: "0.7.5"
path: ci-perf-kit
submodules: true
# setup
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/perf-compare-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
with:
repository: mmtk/ci-perf-kit
token: ${{ secrets.CI_ACCESS_TOKEN }}
ref: "0.7.4"
ref: "0.7.5"
path: ci-perf-kit
submodules: true
# setup
Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:
with:
repository: mmtk/ci-perf-kit
token: ${{ secrets.CI_ACCESS_TOKEN }}
ref: "0.7.4"
ref: "0.7.5"
path: ci-perf-kit
submodules: true
# setup
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/perf-regression-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
uses: actions/checkout@v2
with:
repository: mmtk/ci-perf-kit
ref: "0.7.4"
ref: "0.7.5"
path: ci-perf-kit
token: ${{ secrets.CI_ACCESS_TOKEN }}
submodules: true
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
uses: actions/checkout@v2
with:
repository: mmtk/ci-perf-kit
ref: "0.7.4"
ref: "0.7.5"
path: ci-perf-kit
token: ${{ secrets.CI_ACCESS_TOKEN }}
submodules: true
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
uses: actions/checkout@v2
with:
repository: mmtk/ci-perf-kit
ref: "0.7.4"
ref: "0.7.5"
path: ci-perf-kit
token: ${{ secrets.CI_ACCESS_TOKEN }}
submodules: true
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
0.24.0 (2024-04-08)
===

## What's Changed

### Misc
* Check and fix broken links in docs by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1085
* Allow binding to implement GC trigger by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1083
* Resolve issues for unit tests on 32 bits by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1095
* Use SFTDenseChunkMap on 64bits when vm_space is enabled by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1094
* Fix warnings with the stable Rust toolchain by @wks in https://github.com/mmtk/mmtk-core/pull/1099
* Use proper logging for the treadmill by @wks in https://github.com/mmtk/mmtk-core/pull/1101

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

0.23.0 (2024-02-09)
===

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.23.0"
version = "0.24.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.23.0", path = "macros/" }
mmtk-macros = { version="0.24.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.23.0"
version = "0.24.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 86518d2

Please sign in to comment.