Skip to content

Commit 8640ab8

Browse files
authored
Bump version to v0.29 (#1232)
1 parent 41501a5 commit 8640ab8

File tree

4 files changed

+31
-4
lines changed

4 files changed

+31
-4
lines changed

.github/workflows/cargo-msrv.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ jobs:
3232
# If the previous step fails, find MSRV
3333
- name: Find MSRV
3434
if: failure()
35-
run: cargo msrv
35+
run: cargo msrv find

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
0.29.0 (2024-11-08)
2+
===
3+
4+
## What's Changed
5+
6+
### CI
7+
* Install cargo-msrv using stable toolchain. by @wks in https://github.com/mmtk/mmtk-core/pull/1215
8+
* Update CI macos image by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1216
9+
* Performance history canary by @wks in https://github.com/mmtk/mmtk-core/pull/1209
10+
* Change the default testing branch for Julia tests by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1221
11+
* Fix auto merge branches by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1230
12+
13+
### Documentation
14+
* Document the policy about performance testing environment and epochs by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1206
15+
16+
### Misc
17+
* Fix a race between forwarding bits and VO bits. by @wks in https://github.com/mmtk/mmtk-core/pull/1214
18+
* Remove space for nogc link by @Pat-Lafon in https://github.com/mmtk/mmtk-core/pull/1217
19+
* Make env_logger an optional dependency by @wks in https://github.com/mmtk/mmtk-core/pull/1226
20+
* Use modern syntax for optional dependencies by @wks in https://github.com/mmtk/mmtk-core/pull/1229
21+
* Fix nightly build and add `inline` attributes to `{un,}likely` by @k-sareen in https://github.com/mmtk/mmtk-core/pull/1228
22+
23+
## New Contributors
24+
* @Pat-Lafon made their first contribution in https://github.com/mmtk/mmtk-core/pull/1217
25+
26+
**Full Changelog**: https://github.com/mmtk/mmtk-core/compare/v0.28.0...v0.29.0
27+
128
0.28.0 (2024-09-27)
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.28.0"
3+
version = "0.29.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.28.0", path = "macros/" }
41+
mmtk-macros = { version="0.29.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.28.0"
4+
version = "0.29.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)