Skip to content

Commit

Permalink
Bump version to v0.22.1 (#1066)
Browse files Browse the repository at this point in the history
Bumps the version to v0.22.1 for
#1065.
  • Loading branch information
qinsoon committed Jan 12, 2024
1 parent 09a4cf0 commit 0e9ac03
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
6 changes: 0 additions & 6 deletions .github/scripts/ci-style.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,3 @@ style_check_auxiliary_crate() {
}

style_check_auxiliary_crate macros

# --- cargo publish dry run ---
# Main crate
cargo publish --dry-run
# Macros
cargo publish --dry-run --manifest-path=macros/Cargo.toml
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
0.22.1 (2024-01-11)
===

## What's Changed

* Revert a mistake in v0.22 that prevents cargo publish by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1065

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

0.22.0 (2023-12-21)
===

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

0 comments on commit 0e9ac03

Please sign in to comment.