Skip to content

Commit ab7eee5

Browse files
authored
Bump version to v0.19 (#148)
1 parent c5da49c commit ab7eee5

File tree

5 files changed

+27
-13
lines changed

5 files changed

+27
-13
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
0.19.0 (2023-08-18)
2+
===
3+
4+
## What's Changed
5+
* Set VM space start and size through options by @qinsoon in https://github.com/mmtk/mmtk-jikesrvm/pull/139
6+
* Install the missing deps in CI tests by @qinsoon in https://github.com/mmtk/mmtk-jikesrvm/pull/140
7+
* Update to MMTk core PR #817 by @qinsoon in https://github.com/mmtk/mmtk-jikesrvm/pull/141
8+
* Update to mmtk-core PR #838 by @qinsoon in https://github.com/mmtk/mmtk-jikesrvm/pull/142
9+
* Rename ambiguous `scan_thread_root{,s}` functions by @k-sareen in https://github.com/mmtk/mmtk-jikesrvm/pull/143
10+
* Set `REFS` to 0 when starting the scan boot image by @k-sareen in https://github.com/mmtk/mmtk-jikesrvm/pull/144
11+
* Add set -e in ci-test.sh. Update MMTk by @qinsoon in https://github.com/mmtk/mmtk-jikesrvm/pull/146
12+
* Update to MMTk core PR #875 by @qinsoon in https://github.com/mmtk/mmtk-jikesrvm/pull/147
13+
114
0.18.0 (2023-04-03)
215
===
316

mmtk/Cargo.lock

Lines changed: 8 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mmtk/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "mmtk_jikesrvm"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
authors = [" <>"]
5-
rust-version = "1.61.0"
5+
rust-version = "1.66.0"
66

77
[lib]
88
name = "mmtk_jikesrvm"
@@ -28,7 +28,7 @@ log = {version = "0.4", features = ["max_level_trace", "release_max_level_off"]
2828
# - change branch/rev
2929
# - change repo name
3030
# But other changes including adding/removing whitespaces in commented lines may break the CI.
31-
mmtk = { git = "https://github.com/mmtk/mmtk-core.git", rev = "04a47feb4598b2120598453c2cceec83986c2122" }
31+
mmtk = { git = "https://github.com/mmtk/mmtk-core.git", rev = "269408b464d723b7f9f2d203e7b3ae220eb8edd9" }
3232
# Uncomment the following to build locally - if you change the path locally, do not commit the change in a PR
3333
# mmtk = { path = "../repos/mmtk-core" }
3434

mmtk/rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.66.1
1+
1.71.1

mmtk/src/api.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ pub extern "C" fn alloc_slow_bump_monotone_immortal(
307307
// FIXME: after we remove plan as build-time option, we should remove this conditional compilation as well.
308308

309309
#[no_mangle]
310-
#[cfg(any(feature = "semispace"))]
310+
#[cfg(feature = "semispace")]
311311
pub extern "C" fn alloc_slow_bump_monotone_copy(
312312
allocator: *mut c_void,
313313
size: usize,
@@ -317,7 +317,7 @@ pub extern "C" fn alloc_slow_bump_monotone_copy(
317317
unsafe { &mut *(allocator as *mut BumpAllocator<JikesRVM>) }.alloc_slow(size, align, offset)
318318
}
319319
#[no_mangle]
320-
#[cfg(not(any(feature = "semispace")))]
320+
#[cfg(not(feature = "semispace"))]
321321
pub extern "C" fn alloc_slow_bump_monotone_copy(
322322
_allocator: *mut c_void,
323323
_size: usize,

0 commit comments

Comments
 (0)