Skip to content

Commit 018d8a5

Browse files
authored
Merge pull request #5543 from wasmerio/release-5.0.6
Release 5.0.6
2 parents 336dd51 + 9a0ba02 commit 018d8a5

File tree

30 files changed

+135
-137
lines changed

30 files changed

+135
-137
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ on:
1616
inputs:
1717
release:
1818
description: 'Make release'
19+
1920
jobs:
2021
setup:
2122
name: Set up
@@ -292,13 +293,13 @@ jobs:
292293
brew install gnu-tar
293294
echo PATH="/usr/local/opt/gnu-tar/libexec/gnubin:$PATH" >> $GITHUB_ENV
294295
if: startsWith(matrix.os, 'macos')
295-
- uses: actions/cache@v2
296+
- uses: actions/cache@v4
296297
with:
297298
path: |
298299
~/.cargo/registry
299300
~/.cargo/git
300301
key: ${{ matrix.build }}-${{ matrix.target }}-cargo-${{ hashFiles('Cargo.lock') }}-v1
301-
- uses: actions/cache@v2
302+
- uses: actions/cache@v4
302303
if: matrix.use_sccache
303304
with:
304305
path: ${{ runner.tool_cache }}/cargo-sccache

.github/workflows/test.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -630,6 +630,7 @@ jobs:
630630
shell: bash
631631
run: |
632632
echo "RUSTFLAGS=-L/opt/homebrew/lib" >> $GITHUB_ENV
633+
echo "RUSTDOCFLAGS=-L/opt/homebrew/lib" >> $GITHUB_ENV
633634
- name: Setup Rust target
634635
shell: bash
635636
run: |
@@ -846,6 +847,7 @@ jobs:
846847
shell: bash
847848
run: |
848849
echo "RUSTFLAGS=-L/opt/homebrew/lib" >> $GITHUB_ENV
850+
echo "RUSTDOCFLAGS=-L/opt/homebrew/lib" >> $GITHUB_ENV
849851
- name: Setup Rust target
850852
shell: bash
851853
run: |

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,22 @@
77
Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/CHANGELOG.md).
88

99

10+
## **Unreleased**
11+
12+
## 5.0.6 - 29/04/2025
13+
Backport of PRs in wasmer 6.0.0.
14+
## Added
15+
- [#5419](https://github.com/wasmerio/wasmer/pull/5419) reftypes panic fix
16+
- [#5333](https://github.com/wasmerio/wasmer/pull/5333) allows to reduce build deps during libwasmvm build
17+
- [#5449](https://github.com/wasmerio/wasmer/pull/5449) fixes a panic in singlepass
18+
- [#5355](https://github.com/wasmerio/wasmer/pull/5355) lazy_static dependency removal
19+
20+
## Changed
21+
22+
- [#5540](https://github.com/wasmerio/wasmer/pull/5540) chore: bump flagged packages
23+
24+
## Fixed
25+
1026
## 5.0.5-rc1 - 03/01/2025
1127
Fixed an error in `wasmer create-exe` that prevented the correct execution and various improvements to the FS in WASIX.
1228

Cargo.lock

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

Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ rust-version.workspace = true
1212
version.workspace = true
1313

1414
[dependencies]
15-
wasmer = { version = "=5.0.5-rc1", path = "lib/api", default-features = false }
16-
wasmer-compiler = { version = "=5.0.5-rc1", path = "lib/compiler", features = [
15+
wasmer = { version = "=5.0.6", path = "lib/api", default-features = false }
16+
wasmer-compiler = { version = "=5.0.6", path = "lib/compiler", features = [
1717
"compiler",
1818
], optional = true }
19-
wasmer-compiler-cranelift = { version = "=5.0.5-rc1", path = "lib/compiler-cranelift", optional = true }
20-
wasmer-compiler-singlepass = { version = "=5.0.5-rc1", path = "lib/compiler-singlepass", optional = true }
21-
wasmer-compiler-llvm = { version = "=5.0.5-rc1", path = "lib/compiler-llvm", optional = true }
19+
wasmer-compiler-cranelift = { version = "=5.0.6", path = "lib/compiler-cranelift", optional = true }
20+
wasmer-compiler-singlepass = { version = "=5.0.6", path = "lib/compiler-singlepass", optional = true }
21+
wasmer-compiler-llvm = { version = "=5.0.6", path = "lib/compiler-llvm", optional = true }
2222
wasmer-wasix = { path = "lib/wasix", optional = true }
23-
wasmer-wast = { version = "=5.0.5-rc1", path = "tests/lib/wast", optional = true }
24-
wasi-test-generator = { version = "=5.0.5-rc1", path = "tests/wasi-wast", optional = true }
25-
wasmer-cache = { version = "=5.0.5-rc1", path = "lib/cache", optional = true }
26-
wasmer-types = { version = "=5.0.5-rc1", path = "lib/types" }
27-
wasmer-middlewares = { version = "=5.0.5-rc1", path = "lib/middlewares", optional = true }
23+
wasmer-wast = { version = "=5.0.6", path = "tests/lib/wast", optional = true }
24+
wasi-test-generator = { version = "=5.0.6", path = "tests/wasi-wast", optional = true }
25+
wasmer-cache = { version = "=5.0.6", path = "lib/cache", optional = true }
26+
wasmer-types = { version = "=5.0.6", path = "lib/types" }
27+
wasmer-middlewares = { version = "=5.0.6", path = "lib/middlewares", optional = true }
2828

2929
# Third party dependencies
3030
cfg-if = "1.0"
@@ -83,7 +83,7 @@ homepage = "https://wasmer.io/"
8383
license = "MIT"
8484
repository = "https://github.com/wasmerio/wasmer"
8585
rust-version = "1.81"
86-
version = "5.0.5-rc1"
86+
version = "5.0.6"
8787

8888
[workspace.dependencies]
8989
# Repo-local crates
@@ -132,7 +132,7 @@ glob = "0.3"
132132
rustc_version = "0.4"
133133

134134
[dev-dependencies]
135-
wasmer = { version = "=5.0.5-rc1", path = "lib/api", features = [
135+
wasmer = { version = "=5.0.6", path = "lib/api", features = [
136136
"compiler",
137137
"singlepass",
138138
"sys",

0 commit comments

Comments
 (0)