Skip to content

Commit 9f0c218

Browse files
authored
Bump version to v0.22.1 (#1066)
Bumps the version to v0.22.1 for #1065.
1 parent f0b472c commit 9f0c218

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

.github/scripts/ci-style.sh

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,3 @@ style_check_auxiliary_crate() {
4242
}
4343

4444
style_check_auxiliary_crate macros
45-
46-
# --- cargo publish dry run ---
47-
# Main crate
48-
cargo publish --dry-run
49-
# Macros
50-
cargo publish --dry-run --manifest-path=macros/Cargo.toml

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
0.22.1 (2024-01-11)
2+
===
3+
4+
## What's Changed
5+
6+
* Revert a mistake in v0.22 that prevents cargo publish by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1065
7+
8+
**Full Changelog**: https://github.com/mmtk/mmtk-core/compare/v0.22.0...v0.22.1
9+
110
0.22.0 (2023-12-21)
211
===
312

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mmtk"
3-
version = "0.22.0"
3+
version = "0.22.1"
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.22.0", path = "macros/" }
41+
mmtk-macros = { version="0.22.1", path = "macros/" }
4242
num_cpus = "1.8"
4343
num-traits = "0.2"
4444
pfm = { version = "0.1.1", optional = true }

macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.22.0"
4+
version = "0.22.1"
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)