Skip to content

Commit

Permalink
Bump versions to linera.6 ready for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Twey committed Nov 1, 2024
1 parent 2dbccf7 commit 5e9c5ae
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 22 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ rust-version.workspace = true
version.workspace = true

[dependencies]
wasmer = { package = "linera-wasmer", version = "=4.4.0-linera.5", path = "lib/api", default-features = false }
wasmer-compiler = { package = "linera-wasmer-compiler", version = "=4.4.0-linera.5", path = "lib/compiler", features = [
wasmer = { package = "linera-wasmer", version = "=4.4.0-linera.6", path = "lib/api", default-features = false }
wasmer-compiler = { package = "linera-wasmer-compiler", version = "=4.4.0-linera.6", path = "lib/compiler", features = [
"compiler",
], optional = true }
wasmer-compiler-cranelift = { package = "linera-wasmer-compiler-cranelift", version = "=4.4.0-linera.5", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { package = "linera-wasmer-compiler-singlepass", version = "=4.4.0-linera.5", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-cranelift = { package = "linera-wasmer-compiler-cranelift", version = "=4.4.0-linera.6", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { package = "linera-wasmer-compiler-singlepass", version = "=4.4.0-linera.6", path = "lib/compiler-singlepass", optional = true }
# wasmer-compiler-llvm = { version = "=4.4.0", path = "lib/compiler-llvm", optional = true }
# wasmer-emscripten = { version = "=4.4.0", path = "lib/emscripten", optional = true }
# wasmer-wasix = { path = "lib/wasix", optional = true }
Expand Down Expand Up @@ -128,7 +128,7 @@ glob = "0.3"
rustc_version = "0.4"

[dev-dependencies]
wasmer = { package = "linera-wasmer", version = "=4.4.0-linera.5", path = "lib/api", features = [
wasmer = { package = "linera-wasmer", version = "=4.4.0-linera.6", path = "lib/api", features = [
"compiler",
"singlepass",
"sys",
Expand Down
10 changes: 5 additions & 5 deletions lib/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version = "4.4.0-linera.5"
version = "4.4.0-linera.6"

#####
# This crate comes in 2 major flavors:
Expand Down Expand Up @@ -43,14 +43,14 @@ loupe = { version = "0.1.3", optional = true, features = [
# Dependencies and Development Dependencies for `sys`.
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# - Mandatory dependencies for `sys`.
wasmer-vm = { package = "linera-wasmer-vm", path = "../vm", version = "=4.4.0-linera.5" }
wasmer-compiler = { package = "linera-wasmer-compiler", path = "../compiler", version = "=4.4.0-linera.5" }
wasmer-vm = { package = "linera-wasmer-vm", path = "../vm", version = "=4.4.0-linera.6" }
wasmer-compiler = { package = "linera-wasmer-compiler", path = "../compiler", version = "=4.4.0-linera.6" }
wasmer-derive = { path = "../derive", version = "=4.4.0" }
wasmer-types = { path = "../types", version = "=4.4.0" }
target-lexicon = { version = "0.12.2", default-features = false }
# - Optional dependencies for `sys`.
wasmer-compiler-singlepass = { package = "linera-wasmer-compiler-singlepass", path = "../compiler-singlepass", version = "=4.4.0-linera.5", optional = true }
wasmer-compiler-cranelift = { package = "linera-wasmer-compiler-cranelift", path = "../compiler-cranelift", version = "=4.4.0-linera.5", optional = true }
wasmer-compiler-singlepass = { package = "linera-wasmer-compiler-singlepass", path = "../compiler-singlepass", version = "=4.4.0-linera.6", optional = true }
wasmer-compiler-cranelift = { package = "linera-wasmer-compiler-cranelift", path = "../compiler-cranelift", version = "=4.4.0-linera.6", optional = true }
#wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=4.4.0", optional = true }

wasm-bindgen = { version = "0.2.74", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions lib/compiler-cranelift/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ homepage.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version = "4.4.0-linera.5"
version = "4.4.0-linera.6"

[dependencies]
wasmer-compiler = { package = "linera-wasmer-compiler", path = "../compiler", version = "=4.4.0-linera.5", features = ["translator", "compiler"], default-features = false }
wasmer-compiler = { package = "linera-wasmer-compiler", path = "../compiler", version = "=4.4.0-linera.6", features = ["translator", "compiler"], default-features = false }
wasmer-types = { path = "../types", version = "=4.4.0", default-features = false, features = ["std"] }
cranelift-entity = { version = "0.91.1", default-features = false }
cranelift-codegen = { version = "0.91.1", default-features = false, features = ["x86", "arm64", "riscv64"] }
Expand Down
4 changes: 2 additions & 2 deletions lib/compiler-singlepass/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ homepage.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version = "4.4.0-linera.5"
version = "4.4.0-linera.6"

[dependencies]
wasmer-compiler = { package = "linera-wasmer-compiler", path = "../compiler", version = "=4.4.0-linera.5", features = ["translator", "compiler"], default-features = false }
wasmer-compiler = { package = "linera-wasmer-compiler", path = "../compiler", version = "=4.4.0-linera.6", features = ["translator", "compiler"], default-features = false }
wasmer-types = { path = "../types", version = "=4.4.0", default-features = false, features = ["std"] }
hashbrown = { version = "0.11", optional = true }
gimli = { version = "0.26", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions lib/compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version = "4.4.0-linera.5"
version = "4.4.0-linera.6"

[dependencies]
wasmer-types = { path = "../types", version = "=4.4.0", default-features = false }
Expand Down Expand Up @@ -45,7 +45,7 @@ shared-buffer = { workspace = true }
libc.workspace = true

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
wasmer-vm = { package = "linera-wasmer-vm", path = "../vm", version = "=4.4.0-linera.5" }
wasmer-vm = { package = "linera-wasmer-vm", path = "../vm", version = "=4.4.0-linera.6" }
region = { version = "3.0" }

[target.'cfg(target_os = "windows")'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion lib/vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version.workspace = true
version = "4.4.0-linera.5"
version = "4.4.0-linera.6"

[dependencies]
memoffset.workspace = true
Expand Down

0 comments on commit 5e9c5ae

Please sign in to comment.