Skip to content

Commit c0f9788

Browse files
authored
Bump version to v0.30 (#1252)
1 parent 2e548e5 commit c0f9788

File tree

5 files changed

+27
-4
lines changed

5 files changed

+27
-4
lines changed

.github/scripts/ci-common.sh

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ cargo_toml=$project_root/Cargo.toml
99

1010
dummyvm_toml=$project_root/docs/dummyvm/Cargo.toml
1111

12+
# Pin certain deps for our MSRV
13+
cargo update -p [email protected] --precise 0.5.5 # This can be removed once we move to Rust 1.81 or newer
14+
1215
# Repeat a command for all the features. Requires the command as one argument (with double quotes)
1316
for_all_features() {
1417
# without mutually exclusive features

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
0.30.0 (2024-12-20)
2+
===
3+
4+
## What's Changed
5+
6+
### policy
7+
* Allow setting object metadata for VM space objects. Expose VO bit under a feature. by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1248
8+
9+
### Misc
10+
* Fix clippy warnings for Rust 1.83 by @wks in https://github.com/mmtk/mmtk-core/pull/1242
11+
* Annotate mmap ranges using PR_SET_VMA by @wks in https://github.com/mmtk/mmtk-core/pull/1236
12+
* Fix warnings for lifetime in MmapAnnotation impl by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1244
13+
* Collect live bytes per space, and report by space by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1238
14+
* Minor changes for debugging. by @wks in https://github.com/mmtk/mmtk-core/pull/1245
15+
* Use macos-15 for style check by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1249
16+
* Check the option before aggregating live bytes data. Panic if the option is enabled on malloc space. by @qinsoon in https://github.com/mmtk/mmtk-core/pull/1250
17+
18+
19+
**Full Changelog**: https://github.com/mmtk/mmtk-core/compare/v0.29.0...v0.30.0
20+
121
0.29.0 (2024-11-08)
222
===
323

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mmtk"
3-
version = "0.29.0"
3+
version = "0.30.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.29.0", path = "macros/" }
41+
mmtk-macros = { version="0.30.0", path = "macros/" }
4242
num_cpus = "1.8"
4343
num-traits = "0.2"
4444
pfm = { version = "0.1.1", optional = true }

docs/team/release.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ MMTk releases include MMTk core and the officially supported bindings. They shar
1313
The current releases include the following bindings:
1414
* OpenJDK
1515
* JikesRVM
16+
* Julia
1617

1718
The current releases do not include the following bindings:
18-
* Julia: We have made good progress on the binding development, and we will include it soon.
1919
* Ruby: We have made good progress on the binding development, and we will include it soon.
2020
* V8: We currently lack of resources to work on the binding.
2121

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.29.0"
4+
version = "0.30.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)