From 12f4cb76d0861aa7f72cea5741656213b4ef723b Mon Sep 17 00:00:00 2001 From: Linwei Shang Date: Tue, 24 Sep 2024 10:13:35 -0700 Subject: [PATCH] chore: release 0.8.6 (#75) --- .github/workflows/rust.yml | 4 ++-- .github/workflows/wasm.yml | 2 +- CHANGELOG.md | 4 ++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index e07ad24..23315e8 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -9,9 +9,9 @@ jobs: rust: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Cache cargo build - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | ~/.cargo/registry diff --git a/.github/workflows/wasm.yml b/.github/workflows/wasm.yml index 406bb99..f523023 100644 --- a/.github/workflows/wasm.yml +++ b/.github/workflows/wasm.yml @@ -12,7 +12,7 @@ jobs: DFX_VERSION: 0.22.0 IC_REPL_VERSION: 0.7.4 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install dfx uses: dfinity/setup-dfx@main with: diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cfd9c6..9269c40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +## [0.8.6] - 2024-09-24 + +* Add data section check when limiting Wasm heap memory. + ## [0.8.5] - 2024-09-05 * Fix http_request redirect. diff --git a/Cargo.lock b/Cargo.lock index 8646c64..8f83c3a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -487,7 +487,7 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "ic-wasm" -version = "0.8.5" +version = "0.8.6" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index c614319..e9c9392 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ic-wasm" -version = "0.8.5" +version = "0.8.6" authors = ["DFINITY Stiftung"] edition = "2021" description = "A library for performing Wasm transformations specific to canisters running on the Internet Computer"