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"