Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to v0.29 #1232

Merged
merged 2 commits into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cargo-msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ jobs:
# If the previous step fails, find MSRV
- name: Find MSRV
if: failure()
run: cargo msrv
run: cargo msrv find
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
0.29.0 (2024-11-08)
===

## What's Changed

### CI
* Install cargo-msrv using stable toolchain. by @wks in https://github.com/mmtk/mmtk-core/pull/1215
* Update CI macos image by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1216
* Performance history canary by @wks in https://github.com/mmtk/mmtk-core/pull/1209
* Change the default testing branch for Julia tests by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1221
* Fix auto merge branches by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1230

### Documentation
* Document the policy about performance testing environment and epochs by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1206

### Misc
* Fix a race between forwarding bits and VO bits. by @wks in https://github.com/mmtk/mmtk-core/pull/1214
* Remove space for nogc link by @Pat-Lafon in https://github.com/mmtk/mmtk-core/pull/1217
* Make env_logger an optional dependency by @wks in https://github.com/mmtk/mmtk-core/pull/1226
* Use modern syntax for optional dependencies by @wks in https://github.com/mmtk/mmtk-core/pull/1229
* Fix nightly build and add `inline` attributes to `{un,}likely` by @k-sareen in https://github.com/mmtk/mmtk-core/pull/1228

## New Contributors
* @Pat-Lafon made their first contribution in https://github.com/mmtk/mmtk-core/pull/1217

**Full Changelog**: https://github.com/mmtk/mmtk-core/compare/v0.28.0...v0.29.0

0.28.0 (2024-09-27)
===

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.28.0"
version = "0.29.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.28.0", path = "macros/" }
mmtk-macros = { version="0.29.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.28.0"
version = "0.29.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "MMTk macros provides procedural macros used by mmtk-core."
Expand Down
Loading