Skip to content

Commit 485cda0

Browse files
authored
Merge pull request #5643 from wasmerio/release-6.1.0-rc.2
Release 6.1.0-rc.2
2 parents 21ce6c2 + cc7e17a commit 485cda0

File tree

36 files changed

+165
-165
lines changed

36 files changed

+165
-165
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/C
88

99
## **Unreleased**
1010

11-
## 6.1.0-rc.1 - 15/07/2025
11+
## 6.1.0-rc.2 - 16/07/2025
1212
This is the first release of the linker, adding support for dynamic linking in WASIX.
1313
The linker, paired with [wasixcc](https://github.com/wasix-org/wasixcc), can load DL modules
1414
at runtime.

Cargo.lock

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

Cargo.toml

Lines changed: 13 additions & 13 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 = "=6.1.0-rc.1", path = "lib/api", default-features = false }
16-
wasmer-compiler = { version = "=6.1.0-rc.1", path = "lib/compiler", features = [
15+
wasmer = { version = "=6.1.0-rc.2", path = "lib/api", default-features = false }
16+
wasmer-compiler = { version = "=6.1.0-rc.2", path = "lib/compiler", features = [
1717
"compiler",
1818
], optional = true }
19-
wasmer-compiler-cranelift = { version = "=6.1.0-rc.1", path = "lib/compiler-cranelift", optional = true }
20-
wasmer-compiler-singlepass = { version = "=6.1.0-rc.1", path = "lib/compiler-singlepass", optional = true }
21-
wasmer-compiler-llvm = { version = "=6.1.0-rc.1", path = "lib/compiler-llvm", optional = true }
19+
wasmer-compiler-cranelift = { version = "=6.1.0-rc.2", path = "lib/compiler-cranelift", optional = true }
20+
wasmer-compiler-singlepass = { version = "=6.1.0-rc.2", path = "lib/compiler-singlepass", optional = true }
21+
wasmer-compiler-llvm = { version = "=6.1.0-rc.2", path = "lib/compiler-llvm", optional = true }
2222
wasmer-wasix = { path = "lib/wasix", optional = true }
23-
wasmer-wast = { version = "=6.1.0-rc.1", path = "tests/lib/wast", optional = true }
24-
wasi-test-generator = { version = "=6.1.0-rc.1", path = "tests/wasi-wast", optional = true }
25-
wasmer-cache = { version = "=6.1.0-rc.1", path = "lib/cache", optional = true }
26-
wasmer-types = { version = "=6.1.0-rc.1", path = "lib/types" }
27-
wasmer-middlewares = { version = "=6.1.0-rc.1", path = "lib/middlewares", optional = true }
23+
wasmer-wast = { version = "=6.1.0-rc.2", path = "tests/lib/wast", optional = true }
24+
wasi-test-generator = { version = "=6.1.0-rc.2", path = "tests/wasi-wast", optional = true }
25+
wasmer-cache = { version = "=6.1.0-rc.2", path = "lib/cache", optional = true }
26+
wasmer-types = { version = "=6.1.0-rc.2", path = "lib/types" }
27+
wasmer-middlewares = { version = "=6.1.0-rc.2", path = "lib/middlewares", optional = true }
2828

2929

3030
# Third party dependencies
@@ -84,11 +84,11 @@ homepage = "https://wasmer.io/"
8484
license = "MIT"
8585
repository = "https://github.com/wasmerio/wasmer"
8686
rust-version = "1.84"
87-
version = "6.1.0-rc.1"
87+
version = "6.1.0-rc.2"
8888

8989
[workspace.dependencies]
9090
# Repo-local crates
91-
wasmer-package = { version = "0.601.0-rc.1", path = "lib/package" }
91+
wasmer-package = { version = "0.601.0-rc.2", path = "lib/package" }
9292
wasmer-config = { path = "./lib/config" }
9393
wasmer-wasix = { path = "./lib/wasix" }
9494

@@ -174,7 +174,7 @@ glob = "0.3"
174174
rustc_version = "0.4"
175175

176176
[dev-dependencies]
177-
wasmer = { version = "=6.1.0-rc.1", path = "lib/api", features = [
177+
wasmer = { version = "=6.1.0-rc.2", path = "lib/api", features = [
178178
"compiler",
179179
"singlepass",
180180
"sys",

0 commit comments

Comments
 (0)