Skip to content

Commit

Permalink
Bump version to v0.19 (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
qinsoon authored Aug 24, 2023
1 parent c5da49c commit ab7eee5
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 13 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
0.19.0 (2023-08-18)
===

## What's Changed
* Set VM space start and size through options by @qinsoon in https://github.com/mmtk/mmtk-jikesrvm/pull/139
* Install the missing deps in CI tests by @qinsoon in https://github.com/mmtk/mmtk-jikesrvm/pull/140
* Update to MMTk core PR #817 by @qinsoon in https://github.com/mmtk/mmtk-jikesrvm/pull/141
* Update to mmtk-core PR #838 by @qinsoon in https://github.com/mmtk/mmtk-jikesrvm/pull/142
* Rename ambiguous `scan_thread_root{,s}` functions by @k-sareen in https://github.com/mmtk/mmtk-jikesrvm/pull/143
* Set `REFS` to 0 when starting the scan boot image by @k-sareen in https://github.com/mmtk/mmtk-jikesrvm/pull/144
* Add set -e in ci-test.sh. Update MMTk by @qinsoon in https://github.com/mmtk/mmtk-jikesrvm/pull/146
* Update to MMTk core PR #875 by @qinsoon in https://github.com/mmtk/mmtk-jikesrvm/pull/147

0.18.0 (2023-04-03)
===

Expand Down
15 changes: 8 additions & 7 deletions mmtk/Cargo.lock

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

6 changes: 3 additions & 3 deletions mmtk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "mmtk_jikesrvm"
version = "0.18.0"
version = "0.19.0"
authors = [" <>"]
rust-version = "1.61.0"
rust-version = "1.66.0"

[lib]
name = "mmtk_jikesrvm"
Expand All @@ -28,7 +28,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 = "04a47feb4598b2120598453c2cceec83986c2122" }
mmtk = { git = "https://github.com/mmtk/mmtk-core.git", rev = "269408b464d723b7f9f2d203e7b3ae220eb8edd9" }
# 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
2 changes: 1 addition & 1 deletion mmtk/rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.66.1
1.71.1
4 changes: 2 additions & 2 deletions mmtk/src/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ pub extern "C" fn alloc_slow_bump_monotone_immortal(
// FIXME: after we remove plan as build-time option, we should remove this conditional compilation as well.

#[no_mangle]
#[cfg(any(feature = "semispace"))]
#[cfg(feature = "semispace")]
pub extern "C" fn alloc_slow_bump_monotone_copy(
allocator: *mut c_void,
size: usize,
Expand All @@ -317,7 +317,7 @@ pub extern "C" fn alloc_slow_bump_monotone_copy(
unsafe { &mut *(allocator as *mut BumpAllocator<JikesRVM>) }.alloc_slow(size, align, offset)
}
#[no_mangle]
#[cfg(not(any(feature = "semispace")))]
#[cfg(not(feature = "semispace"))]
pub extern "C" fn alloc_slow_bump_monotone_copy(
_allocator: *mut c_void,
_size: usize,
Expand Down

0 comments on commit ab7eee5

Please sign in to comment.