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.28 #182

Merged
merged 2 commits into from
Sep 27, 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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
0.28.0 (2024-09-27)
===

## What's Changed
* Introduce JikesRVM-specific object accessor types by @wks in https://github.com/mmtk/mmtk-jikesrvm/pull/177
* Use JavaHeader address as ObjectReference by @wks in https://github.com/mmtk/mmtk-jikesrvm/pull/179
* Require ObjectReference to point inside object by @wks in https://github.com/mmtk/mmtk-jikesrvm/pull/180
* Migrate to Rust 2021 edition by @wks in https://github.com/mmtk/mmtk-jikesrvm/pull/181

**Full Changelog**: https://github.com/mmtk/mmtk-jikesrvm/compare/v0.27.0...v0.28.0

0.27.0 (2024-08-09)
===

Expand Down
38 changes: 19 additions & 19 deletions mmtk/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions mmtk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mmtk_jikesrvm"
version = "0.26.0"
version = "0.28.0"
authors = [" <>"]
rust-version = "1.71.1"
edition = "2021"
Expand Down Expand Up @@ -29,7 +29,7 @@ log = {version = "0.4", features = ["max_level_trace", "release_max_level_off"]
# - change branch/rev
# - change repo name
# But other changes including adding/removing whitespaces in commented lines may break the CI.
mmtk = { git = "https://github.com/mmtk/mmtk-core.git", rev = "45cdf31055b1b6a629bdb8032adaa6dd5a8e32b9" }
mmtk = { git = "https://github.com/mmtk/mmtk-core.git", rev = "c4fdce02274a4b3fee49318cce9f6bf3eb378ae0" }
# Uncomment the following to build locally - if you change the path locally, do not commit the change in a PR
# mmtk = { path = "../repos/mmtk-core" }

Expand Down
Loading