Skip to content

Commit bbdc161

Browse files
authored
Bump version to v0.18 (#213)
1 parent dd60ab6 commit bbdc161

File tree

4 files changed

+20
-11
lines changed

4 files changed

+20
-11
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency:
1111

1212
jobs:
1313
test:
14-
runs-on: ubuntu-18.04
14+
runs-on: ubuntu-22.04
1515
steps:
1616
- uses: actions/checkout@v2
1717
- name: Setup environments
@@ -34,7 +34,7 @@ jobs:
3434
run: ./.github/scripts/ci-style.sh
3535

3636
test-weak-ref:
37-
runs-on: ubuntu-18.04
37+
runs-on: ubuntu-22.04
3838
steps:
3939
- uses: actions/checkout@v2
4040
- name: Setup environments
@@ -49,7 +49,7 @@ jobs:
4949
./.github/scripts/ci-test-only-weak-ref.sh
5050
5151
test-assertions:
52-
runs-on: ubuntu-18.04
52+
runs-on: ubuntu-22.04
5353
steps:
5454
- uses: actions/checkout@v2
5555
- name: Setup Environments
@@ -62,7 +62,7 @@ jobs:
6262
run: ./.github/scripts/ci-test-assertions.sh
6363

6464
msrv:
65-
runs-on: ubuntu-18.04
65+
runs-on: ubuntu-22.04
6666
steps:
6767
- uses: actions/checkout@v2
6868
- name: Install Rust toolchain

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
0.18.0 (2023-04-03)
2+
===
3+
4+
* Support the `StickyImmix` plan.
5+
* Fix a bug in the C2 compiler where we may update an object without any write barrier if C2 performs deoptimization and
6+
triggers a GC in deoptimization. We use `object_probable_write` to properly log the object.
7+
* Update to OpenJDK 11.0.19+1 (`jdk-11.0.19+1-mmtk`).
8+
* Update to mmtk-core 0.18.0.
9+
110
0.17.0 (2023-02-17)
211
===
312

mmtk/Cargo.lock

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

mmtk/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_openjdk"
3-
version = "0.17.0"
3+
version = "0.18.0"
44
authors = [" <>"]
55
rust-version = "1.61.0"
66
build = "build.rs"
@@ -30,7 +30,7 @@ once_cell = "1.10.0"
3030
# - change branch
3131
# - change repo name
3232
# But other changes including adding/removing whitespaces in commented lines may break the CI.
33-
mmtk = { git = "https://github.com/mmtk/mmtk-core.git", rev = "c634762cf1417fe2d8f17b1b7b41e14a951044c3" }
33+
mmtk = { git = "https://github.com/mmtk/mmtk-core.git", rev = "f8469b0a019bea58cba26e9fb5c70fb7398ccd31" }
3434
# Uncomment the following to build locally
3535
# mmtk = { path = "../repos/mmtk-core" }
3636

0 commit comments

Comments
 (0)