diff --git a/Cargo.toml b/Cargo.toml index 2496a6b73..44503ebbc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,19 +12,19 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer = { version = "=5.0.0-rc.1", path = "lib/api", default-features = false } -wasmer-compiler = { version = "=5.0.0-rc.1", path = "lib/compiler", features = [ +wasmer = { version = "=5.0.0", path = "lib/api", default-features = false } +wasmer-compiler = { version = "=5.0.0", path = "lib/compiler", features = [ "compiler", ], optional = true } -wasmer-compiler-cranelift = { version = "=5.0.0-rc.1", path = "lib/compiler-cranelift", optional = true } -wasmer-compiler-singlepass = { version = "=5.0.0-rc.1", path = "lib/compiler-singlepass", optional = true } -wasmer-compiler-llvm = { version = "=5.0.0-rc.1", path = "lib/compiler-llvm", optional = true } +wasmer-compiler-cranelift = { version = "=5.0.0", path = "lib/compiler-cranelift", optional = true } +wasmer-compiler-singlepass = { version = "=5.0.0", path = "lib/compiler-singlepass", optional = true } +wasmer-compiler-llvm = { version = "=5.0.0", path = "lib/compiler-llvm", optional = true } wasmer-wasix = { path = "lib/wasix", optional = true } -wasmer-wast = { version = "=5.0.0-rc.1", path = "tests/lib/wast", optional = true } -wasi-test-generator = { version = "=5.0.0-rc.1", path = "tests/wasi-wast", optional = true } -wasmer-cache = { version = "=5.0.0-rc.1", path = "lib/cache", optional = true } -wasmer-types = { version = "=5.0.0-rc.1", path = "lib/types" } -wasmer-middlewares = { version = "=5.0.0-rc.1", path = "lib/middlewares", optional = true } +wasmer-wast = { version = "=5.0.0", path = "tests/lib/wast", optional = true } +wasi-test-generator = { version = "=5.0.0", path = "tests/wasi-wast", optional = true } +wasmer-cache = { version = "=5.0.0", path = "lib/cache", optional = true } +wasmer-types = { version = "=5.0.0", path = "lib/types" } +wasmer-middlewares = { version = "=5.0.0", path = "lib/middlewares", optional = true } # Third party dependencies cfg-if = "1.0" @@ -84,7 +84,7 @@ homepage = "https://wasmer.io/" license = "MIT" repository = "https://github.com/wasmerio/wasmer" rust-version = "1.81" -version = "5.0.0-rc.1" +version = "5.0.0" [workspace.dependencies] # Repo-local crates @@ -130,7 +130,7 @@ glob = "0.3" rustc_version = "0.4" [dev-dependencies] -wasmer = { version = "=5.0.0-rc.1", path = "lib/api", features = [ +wasmer = { version = "=5.0.0", path = "lib/api", features = [ "compiler", "singlepass", "sys", diff --git a/lib/api/Cargo.toml b/lib/api/Cargo.toml index 9891d4177..3c64eedd6 100644 --- a/lib/api/Cargo.toml +++ b/lib/api/Cargo.toml @@ -51,15 +51,15 @@ 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 = { path = "../vm", version = "=5.0.0-rc.1" } -wasmer-compiler = { path = "../compiler", version = "=5.0.0-rc.1" } -wasmer-derive = { path = "../derive", version = "=5.0.0-rc.1" } -wasmer-types = { path = "../types", version = "=5.0.0-rc.1" } +wasmer-vm = { path = "../vm", version = "=5.0.0" } +wasmer-compiler = { path = "../compiler", version = "=5.0.0" } +wasmer-derive = { path = "../derive", version = "=5.0.0" } +wasmer-types = { path = "../types", version = "=5.0.0" } target-lexicon = { version = "0.12.2", default-features = false } # - Optional dependencies for `sys`. -wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.0-rc.1", optional = true } -wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=5.0.0-rc.1", optional = true } -wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=5.0.0-rc.1", optional = true } +wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.0", optional = true } +wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=5.0.0", optional = true } +wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=5.0.0", optional = true } wasm-bindgen = { version = "0.2.74", optional = true } js-sys = { version = "0.3.51", optional = true } @@ -74,17 +74,17 @@ windows-sys = "0.59" wat = "1.0" tempfile = "3.6.0" anyhow = "1.0" -macro-wasmer-universal-test = { version = "5.0.0-rc.1", path = "./macro-wasmer-universal-test" } +macro-wasmer-universal-test = { version = "5.0.0", path = "./macro-wasmer-universal-test" } # Dependencies and Develoment Dependencies for `js`. [target.'cfg(target_arch = "wasm32")'.dependencies] # - Mandatory dependencies for `js`. -wasmer-types = { path = "../types", version = "=5.0.0-rc.1", default-features = false, features = [ +wasmer-types = { path = "../types", version = "=5.0.0", default-features = false, features = [ "std", ] } wasm-bindgen = "0.2.74" js-sys = "0.3.51" -wasmer-derive = { path = "../derive", version = "=5.0.0-rc.1" } +wasmer-derive = { path = "../derive", version = "=5.0.0" } # - Optional dependencies for `js`. wasmparser = { workspace = true, default-features = false, optional = true } hashbrown = { version = "0.11", optional = true } @@ -96,7 +96,7 @@ serde = { version = "1.0", features = ["derive"] } wat = "1.0" anyhow = "1.0" wasm-bindgen-test = "0.3.0" -macro-wasmer-universal-test = { version = "5.0.0-rc.1", path = "./macro-wasmer-universal-test" } +macro-wasmer-universal-test = { version = "5.0.0", path = "./macro-wasmer-universal-test" } # Specific to `js`. # diff --git a/lib/api/macro-wasmer-universal-test/Cargo.toml b/lib/api/macro-wasmer-universal-test/Cargo.toml index 2a856b4eb..89c3d61b4 100644 --- a/lib/api/macro-wasmer-universal-test/Cargo.toml +++ b/lib/api/macro-wasmer-universal-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "macro-wasmer-universal-test" -version = "5.0.0-rc.1" +version = "5.0.0" edition = "2021" license = "MIT" description = "Universal test macro for wasmer-test" diff --git a/lib/c-api/Cargo.toml b/lib/c-api/Cargo.toml index 442b6c394..fd3359565 100644 --- a/lib/c-api/Cargo.toml +++ b/lib/c-api/Cargo.toml @@ -24,13 +24,13 @@ crate-type = ["staticlib", "cdylib"] #"cdylib", "rlib", "staticlib"] [dependencies] # We rename `wasmer` to `wasmer-api` to avoid the conflict with this # library name (see `[lib]`). -wasmer-api = { version = "=5.0.0-rc.1", path = "../api", default-features = false, package = "wasmer" } -wasmer-compiler = { version = "=5.0.0-rc.1", path = "../compiler", optional = true } -wasmer-compiler-cranelift = { version = "=5.0.0-rc.1", path = "../compiler-cranelift", optional = true } -wasmer-compiler-llvm = { version = "=5.0.0-rc.1", path = "../compiler-llvm", optional = true } -wasmer-compiler-singlepass = { version = "=5.0.0-rc.1", path = "../compiler-singlepass", optional = true } -wasmer-middlewares = { version = "=5.0.0-rc.1", path = "../middlewares", optional = true } -wasmer-types = { version = "=5.0.0-rc.1", path = "../types" } +wasmer-api = { version = "=5.0.0", path = "../api", default-features = false, package = "wasmer" } +wasmer-compiler = { version = "=5.0.0", path = "../compiler", optional = true } +wasmer-compiler-cranelift = { version = "=5.0.0", path = "../compiler-cranelift", optional = true } +wasmer-compiler-llvm = { version = "=5.0.0", path = "../compiler-llvm", optional = true } +wasmer-compiler-singlepass = { version = "=5.0.0", path = "../compiler-singlepass", optional = true } +wasmer-middlewares = { version = "=5.0.0", path = "../middlewares", optional = true } +wasmer-types = { version = "=5.0.0", path = "../types" } wasmer-wasix = { path = "../wasix", version="=0.29.0", features = ["host-fs", "host-vnet"], optional = true } webc = { workspace = true, optional = true } virtual-fs = { version = "0.18.0", path = "../virtual-fs", optional = true, default-features = false, features = ["static-fs"] } diff --git a/lib/c-api/examples/wasmer-capi-examples-runner/Cargo.toml b/lib/c-api/examples/wasmer-capi-examples-runner/Cargo.toml index 96d7c9f88..4b0e89cfd 100644 --- a/lib/c-api/examples/wasmer-capi-examples-runner/Cargo.toml +++ b/lib/c-api/examples/wasmer-capi-examples-runner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-capi-examples-runner" -version = "5.0.0-rc.1" +version = "5.0.0" edition = "2021" license = "MIT" description = "wasmer-capi-examples-runner" diff --git a/lib/c-api/tests/wasmer-c-api-test-runner/Cargo.toml b/lib/c-api/tests/wasmer-c-api-test-runner/Cargo.toml index 64336f11f..eac0da1ef 100644 --- a/lib/c-api/tests/wasmer-c-api-test-runner/Cargo.toml +++ b/lib/c-api/tests/wasmer-c-api-test-runner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-c-api-test-runner" -version = "5.0.0-rc.1" +version = "5.0.0" edition = "2021" license = "MIT" description = "wasmer-c-api-test-runner" diff --git a/lib/cache/Cargo.toml b/lib/cache/Cargo.toml index 9c696e590..14b238f97 100644 --- a/lib/cache/Cargo.toml +++ b/lib/cache/Cargo.toml @@ -13,7 +13,7 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer = { path = "../api", version = "=5.0.0-rc.1", default-features = false } +wasmer = { path = "../api", version = "=5.0.0", default-features = false } hex = "0.4" thiserror = "1" blake3 = "1.0" @@ -26,8 +26,8 @@ clap_derive = { version = "=4.4.7" } clap_lex = { version = "=0.6.0" } tempfile = "3.6.0" rand = "0.8.3" -wasmer = { path = "../api", version = "=5.0.0-rc.1", default-features = false, features = ["sys", "cranelift"] } -wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.0-rc.1" } +wasmer = { path = "../api", version = "=5.0.0", default-features = false, features = ["sys", "cranelift"] } +wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.0" } [features] default = ["filesystem"] diff --git a/lib/cli-compiler/Cargo.toml b/lib/cli-compiler/Cargo.toml index e71ab7d8e..152dbb21b 100644 --- a/lib/cli-compiler/Cargo.toml +++ b/lib/cli-compiler/Cargo.toml @@ -20,8 +20,8 @@ path = "src/bin/wasmer_compiler.rs" doc = false [dependencies] -wasmer-compiler = { version = "=5.0.0-rc.1", path = "../compiler", features = ["compiler"] } -wasmer-types = { version = "=5.0.0-rc.1", path = "../types" } +wasmer-compiler = { version = "=5.0.0", path = "../compiler", features = ["compiler"] } +wasmer-types = { version = "=5.0.0", path = "../types" } is-terminal = "0.4.7" colored = "2.0" anyhow = "1.0" @@ -36,13 +36,13 @@ log = { version = "0.4", optional = true } target-lexicon = { version = "0.12", features = ["std"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -wasmer-compiler-singlepass = { version = "=5.0.0-rc.1", path = "../compiler-singlepass", optional = true } -wasmer-compiler-cranelift = { version = "=5.0.0-rc.1", path = "../compiler-cranelift", optional = true } +wasmer-compiler-singlepass = { version = "=5.0.0", path = "../compiler-singlepass", optional = true } +wasmer-compiler-cranelift = { version = "=5.0.0", path = "../compiler-cranelift", optional = true } clap = { version = "4.4.0", features = ["derive", "env"] } [target.'cfg(target_arch = "wasm32")'.dependencies] -wasmer-compiler-singlepass = { version = "=5.0.0-rc.1", path = "../compiler-singlepass", optional = true, default-features = false, features = ["wasm"] } -wasmer-compiler-cranelift = { version = "=5.0.0-rc.1", path = "../compiler-cranelift", optional = true, default-features = false, features = ["wasm"] } +wasmer-compiler-singlepass = { version = "=5.0.0", path = "../compiler-singlepass", optional = true, default-features = false, features = ["wasm"] } +wasmer-compiler-cranelift = { version = "=5.0.0", path = "../compiler-cranelift", optional = true, default-features = false, features = ["wasm"] } # NOTE: Must use different features for clap because the "color" feature does not # work on wasi, due to the anstream dependency not compiling. clap = { version = "4.4.0", default-features = false, features = [ diff --git a/lib/cli/Cargo.toml b/lib/cli/Cargo.toml index e7c8baa4c..5b0b69fc3 100644 --- a/lib/cli/Cargo.toml +++ b/lib/cli/Cargo.toml @@ -112,16 +112,16 @@ enable-serde = [ [dependencies] # Repo-local dependencies. -wasmer = { version = "=5.0.0-rc.1", path = "../api", default-features = false } -wasmer-compiler = { version = "=5.0.0-rc.1", path = "../compiler", features = [ +wasmer = { version = "=5.0.0", path = "../api", default-features = false } +wasmer-compiler = { version = "=5.0.0", path = "../compiler", features = [ "compiler", ], optional = true } -wasmer-compiler-cranelift = { version = "=5.0.0-rc.1", path = "../compiler-cranelift", optional = true } -wasmer-compiler-singlepass = { version = "=5.0.0-rc.1", path = "../compiler-singlepass", optional = true } -wasmer-compiler-llvm = { version = "=5.0.0-rc.1", path = "../compiler-llvm", optional = true } +wasmer-compiler-cranelift = { version = "=5.0.0", path = "../compiler-cranelift", optional = true } +wasmer-compiler-singlepass = { version = "=5.0.0", path = "../compiler-singlepass", optional = true } +wasmer-compiler-llvm = { version = "=5.0.0", path = "../compiler-llvm", optional = true } wasmer-package.workspace = true -wasmer-vm = { version = "=5.0.0-rc.1", path = "../vm", optional = true } +wasmer-vm = { version = "=5.0.0", path = "../vm", optional = true } wasmer-wasix = { path = "../wasix", version = "=0.29.0", features = [ "logging", "webc_runner_rt_wcgi", @@ -130,11 +130,11 @@ wasmer-wasix = { path = "../wasix", version = "=0.29.0", features = [ "host-fs", "ctrlc", ] } -wasmer-wast = { version = "=5.0.0-rc.1", path = "../../tests/lib/wast", optional = true } -wasmer-types = { version = "=5.0.0-rc.1", path = "../types", features = [ +wasmer-wast = { version = "=5.0.0", path = "../../tests/lib/wast", optional = true } +wasmer-types = { version = "=5.0.0", path = "../types", features = [ "enable-serde", ] } -wasmer-object = { version = "=5.0.0-rc.1", path = "../object", optional = true } +wasmer-object = { version = "=5.0.0", path = "../object", optional = true } virtual-fs = { version = "0.18.0", path = "../virtual-fs", default-features = false, features = [ "host-fs", ] } diff --git a/lib/compiler-cranelift/Cargo.toml b/lib/compiler-cranelift/Cargo.toml index 31f14994c..866bb8670 100644 --- a/lib/compiler-cranelift/Cargo.toml +++ b/lib/compiler-cranelift/Cargo.toml @@ -14,11 +14,11 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer-compiler = { path = "../compiler", version = "=5.0.0-rc.1", features = [ +wasmer-compiler = { path = "../compiler", version = "=5.0.0", features = [ "translator", "compiler", ], default-features = false } -wasmer-types = { path = "../types", version = "=5.0.0-rc.1", default-features = false, features = [ +wasmer-types = { path = "../types", version = "=5.0.0", default-features = false, features = [ "std", ] } cranelift-entity = { version = "=0.110.2", default-features = false } diff --git a/lib/compiler-llvm/Cargo.toml b/lib/compiler-llvm/Cargo.toml index c172303a0..a51221f12 100644 --- a/lib/compiler-llvm/Cargo.toml +++ b/lib/compiler-llvm/Cargo.toml @@ -14,11 +14,11 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer-compiler = { path = "../compiler", version = "=5.0.0-rc.1", features = [ +wasmer-compiler = { path = "../compiler", version = "=5.0.0", features = [ "translator", "compiler" ] } -wasmer-vm = { path = "../vm", version = "=5.0.0-rc.1" } -wasmer-types = { path = "../types", version = "=5.0.0-rc.1" } +wasmer-vm = { path = "../vm", version = "=5.0.0" } +wasmer-types = { path = "../types", version = "=5.0.0" } target-lexicon = { version = "0.12.2", default-features = false } smallvec = "1.6" object = { version = "0.30.3", default-features = false, features = ["read"] } diff --git a/lib/compiler-singlepass/Cargo.toml b/lib/compiler-singlepass/Cargo.toml index ac7a541b4..c06f8198b 100644 --- a/lib/compiler-singlepass/Cargo.toml +++ b/lib/compiler-singlepass/Cargo.toml @@ -14,8 +14,8 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer-compiler = { path = "../compiler", version = "=5.0.0-rc.1", features = ["translator", "compiler"], default-features = false } -wasmer-types = { path = "../types", version = "=5.0.0-rc.1", default-features = false, features = ["std"] } +wasmer-compiler = { path = "../compiler", version = "=5.0.0", features = ["translator", "compiler"], default-features = false } +wasmer-types = { path = "../types", version = "=5.0.0", default-features = false, features = ["std"] } hashbrown = { version = "0.11", optional = true } gimli = { workspace = true, optional = true } enumset.workspace = true diff --git a/lib/compiler/Cargo.toml b/lib/compiler/Cargo.toml index f5d685781..f8adbb0b8 100644 --- a/lib/compiler/Cargo.toml +++ b/lib/compiler/Cargo.toml @@ -13,8 +13,8 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer-types = { path = "../types", version = "=5.0.0-rc.1", default-features = false } -wasmer-object = { path = "../object", version = "=5.0.0-rc.1", optional = true } +wasmer-types = { path = "../types", version = "=5.0.0", default-features = false } +wasmer-object = { path = "../object", version = "=5.0.0", optional = true } wasmparser = { workspace = true, optional = true, default-features = false } enumset.workspace = true hashbrown = { version = "0.11", optional = true } @@ -45,7 +45,7 @@ shared-buffer = { workspace = true } libc.workspace = true [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -wasmer-vm = { path = "../vm", version = "=5.0.0-rc.1" } +wasmer-vm = { path = "../vm", version = "=5.0.0" } region = { version = "3.0" } [target.'cfg(target_os = "windows")'.dependencies] diff --git a/lib/journal/Cargo.toml b/lib/journal/Cargo.toml index 7dcfc81a2..a4be220f2 100644 --- a/lib/journal/Cargo.toml +++ b/lib/journal/Cargo.toml @@ -14,7 +14,7 @@ default = ["log-file", "wasmer/sys"] log-file = ["shared-buffer"] [dependencies] -wasmer = { default-features = false, path = "../api", version = "=5.0.0-rc.1" } +wasmer = { default-features = false, path = "../api", version = "=5.0.0" } wasmer-wasix-types = { path = "../wasi-types", version = "0.29.0", features = [ "enable-serde", ] } diff --git a/lib/middlewares/Cargo.toml b/lib/middlewares/Cargo.toml index 1256a88a3..7cd87cef2 100644 --- a/lib/middlewares/Cargo.toml +++ b/lib/middlewares/Cargo.toml @@ -13,12 +13,12 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer = { path = "../api", version = "=5.0.0-rc.1", default-features = false, features = ["compiler"] } -wasmer-types = { path = "../types", version = "=5.0.0-rc.1" } -wasmer-vm = { path = "../vm", version = "=5.0.0-rc.1" } +wasmer = { path = "../api", version = "=5.0.0", default-features = false, features = ["compiler"] } +wasmer-types = { path = "../types", version = "=5.0.0" } +wasmer-vm = { path = "../vm", version = "=5.0.0" } [dev-dependencies] -wasmer = { path = "../api", version = "=5.0.0-rc.1", features = ["compiler"] } +wasmer = { path = "../api", version = "=5.0.0", features = ["compiler"] } [badges] maintenance = { status = "actively-developed" } diff --git a/lib/object/Cargo.toml b/lib/object/Cargo.toml index 5500d84dc..a8695d1c9 100644 --- a/lib/object/Cargo.toml +++ b/lib/object/Cargo.toml @@ -13,7 +13,7 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer-types = { path = "../types", version = "=5.0.0-rc.1" } +wasmer-types = { path = "../types", version = "=5.0.0" } object = { version = "0.29.0", default-features = false, features = ["write"] } thiserror = "1.0" diff --git a/lib/swift/Cargo.toml b/lib/swift/Cargo.toml index 28aa44333..427e74bfc 100644 --- a/lib/swift/Cargo.toml +++ b/lib/swift/Cargo.toml @@ -18,7 +18,7 @@ uniffi = "0.27" virtual-fs = { path = "../virtual-fs", version = "=0.18.0", default-features = false, features = [ "webc-fs", ] } -wasmer = { version = "=5.0.0-rc.1", path = "../api", default-features = false, features = [ +wasmer = { version = "=5.0.0", path = "../api", default-features = false, features = [ "wamr", "std", ] } diff --git a/lib/sys-utils/Cargo.toml b/lib/sys-utils/Cargo.toml index fee84c162..9e0aa779d 100644 --- a/lib/sys-utils/Cargo.toml +++ b/lib/sys-utils/Cargo.toml @@ -12,9 +12,9 @@ repository.workspace = true rust-version.workspace = true [dependencies] -wasmer = { path = "../api", version = "=5.0.0-rc.1", default-features = false, features = ["sys", "compiler"] } -wasmer-vm = { path = "../vm", version = "=5.0.0-rc.1" } -wasmer-types = { path = "../types", version = "=5.0.0-rc.1" } +wasmer = { path = "../api", version = "=5.0.0", default-features = false, features = ["sys", "compiler"] } +wasmer-vm = { path = "../vm", version = "=5.0.0" } +wasmer-types = { path = "../types", version = "=5.0.0" } region = { version = "3.0" } tracing = "0.1.37" @@ -23,7 +23,7 @@ libc.workspace = true [dev-dependencies] wasmer-wasix.workspace = true -wasmer = { path = "../api", version = "=5.0.0-rc.1", default-features = false, features = ["sys", "compiler", "cranelift"] } +wasmer = { path = "../api", version = "=5.0.0", default-features = false, features = ["sys", "compiler", "cranelift"] } tracing-subscriber = { version = "0.3.16", features = ["fmt"] } tracing = "0.1.37" diff --git a/lib/vm/Cargo.toml b/lib/vm/Cargo.toml index ce20b731a..9bb6784de 100644 --- a/lib/vm/Cargo.toml +++ b/lib/vm/Cargo.toml @@ -15,7 +15,7 @@ version.workspace = true [dependencies] memoffset.workspace = true dashmap.workspace = true -wasmer-types = { path = "../types", version = "=5.0.0-rc.1" } +wasmer-types = { path = "../types", version = "=5.0.0" } libc.workspace = true indexmap = { workspace = true } thiserror = "1.0" diff --git a/lib/wai-bindgen-wasmer/Cargo.toml b/lib/wai-bindgen-wasmer/Cargo.toml index f9e4f159e..05471dd77 100644 --- a/lib/wai-bindgen-wasmer/Cargo.toml +++ b/lib/wai-bindgen-wasmer/Cargo.toml @@ -20,7 +20,7 @@ once_cell = "1.13" thiserror = "1.0" tracing-lib = { version = "0.1.26", optional = true, package = "tracing" } wai-bindgen-wasmer-impl = { version = "0.2.2" } -wasmer = { version = "=5.0.0-rc.1", path = "../api", default-features = false } +wasmer = { version = "=5.0.0", path = "../api", default-features = false } [features] # Enables generated code to emit events via the `tracing` crate whenever wasm is diff --git a/lib/wasi-types/Cargo.toml b/lib/wasi-types/Cargo.toml index 4809202c2..a7946bccd 100644 --- a/lib/wasi-types/Cargo.toml +++ b/lib/wasi-types/Cargo.toml @@ -15,9 +15,9 @@ rust-version.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -wasmer = { default-features = false, path = "../api", version = "=5.0.0-rc.1" } -wasmer-types = { path = "../types", version = "=5.0.0-rc.1" } -wasmer-derive = { path = "../derive", version = "=5.0.0-rc.1" } +wasmer = { default-features = false, path = "../api", version = "=5.0.0" } +wasmer-types = { path = "../types", version = "=5.0.0" } +wasmer-derive = { path = "../derive", version = "=5.0.0" } wai-bindgen-gen-rust = "0.2.1" wai-bindgen-rust = { version = "0.2.1", default-features = false, features = ["macros"] } wai-bindgen-gen-rust-wasm = "0.2.1" diff --git a/lib/wasix/Cargo.toml b/lib/wasix/Cargo.toml index 7e3facb04..ac0c42b85 100644 --- a/lib/wasix/Cargo.toml +++ b/lib/wasix/Cargo.toml @@ -17,8 +17,8 @@ wasmer-package.workspace = true wasmer-wasix-types = { path = "../wasi-types", version = "0.29.0", features = [ "enable-serde", ] } -wasmer-types = { path = "../types", version = "=5.0.0-rc.1", default-features = false } -wasmer = { path = "../api", version = "=5.0.0-rc.1", default-features = false, features = [ +wasmer-types = { path = "../types", version = "=5.0.0", default-features = false } +wasmer = { path = "../api", version = "=5.0.0", default-features = false, features = [ "wat", "js-serializable-module", ] } @@ -152,7 +152,7 @@ windows-sys = { version = "0.59", features = [ terminal_size = { version = "0.3.0" } [dev-dependencies] -wasmer = { path = "../api", version = "=5.0.0-rc.1", default-features = false, features = [ +wasmer = { path = "../api", version = "=5.0.0", default-features = false, features = [ "wat", "js-serializable-module", ] } @@ -171,7 +171,7 @@ tracing-wasm = "0.2" [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] tracing-subscriber = { version = "^0.3" } -wasmer = { path = "../api", version = "=5.0.0-rc.1", default-features = false, features = [ +wasmer = { path = "../api", version = "=5.0.0", default-features = false, features = [ "wat", "js-serializable-module", "cranelift", diff --git a/scripts/update-version.py b/scripts/update-version.py index 0767737b4..e091f0103 100644 --- a/scripts/update-version.py +++ b/scripts/update-version.py @@ -1,7 +1,7 @@ #!/usr/bin/python -PREVIOUS_VERSION='4.4.0' -NEXT_VERSION='5.0.0-rc.1' +PREVIOUS_VERSION='5.0.0-rc.1' +NEXT_VERSION='5.0.0' import os import re diff --git a/scripts/windows-installer/wasmer.iss b/scripts/windows-installer/wasmer.iss index 79d129967..c96eed7c2 100644 --- a/scripts/windows-installer/wasmer.iss +++ b/scripts/windows-installer/wasmer.iss @@ -1,6 +1,6 @@ [Setup] AppName=Wasmer -AppVersion=5.0.0-rc.1 +AppVersion=5.0.0 DefaultDirName={pf}\Wasmer DefaultGroupName=Wasmer Compression=lzma2 diff --git a/tests/integration/cli/Cargo.toml b/tests/integration/cli/Cargo.toml index 2fbc579ca..3567aa5f1 100644 --- a/tests/integration/cli/Cargo.toml +++ b/tests/integration/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-integration-tests-cli" -version = "5.0.0-rc.1" +version = "5.0.0" authors = ["Wasmer Engineering Team "] description = "CLI integration tests" repository = "https://github.com/wasmerio/wasmer" diff --git a/tests/integration/ios/Cargo.toml b/tests/integration/ios/Cargo.toml index 38339b06a..c6961c105 100644 --- a/tests/integration/ios/Cargo.toml +++ b/tests/integration/ios/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-integration-tests-ios" -version = "5.0.0-rc.1" +version = "5.0.0" authors = ["Wasmer Engineering Team "] description = "iOS integration tests" repository = "https://github.com/wasmerio/wasmer" diff --git a/tests/lib/wast/Cargo.toml b/tests/lib/wast/Cargo.toml index 391693052..04fb3c9f5 100644 --- a/tests/lib/wast/Cargo.toml +++ b/tests/lib/wast/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-wast" -version = "5.0.0-rc.1" +version = "5.0.0" authors = ["Wasmer Engineering Team "] description = "wast testing support for wasmer" license = "MIT OR Apache-2.0 WITH LLVM-exception" @@ -13,7 +13,7 @@ edition = "2018" [dependencies] wasmer-types = { path = "../../../lib/types", version="=5.0.0-rc.1" } wasmer-wasix = { path = "../../../lib/wasix", version="=0.29.0" } -wasmer = { path = "../../../lib/api", version = "=5.0.0-rc.1", default-features = false } +wasmer = { path = "../../../lib/api", version = "=5.0.0", default-features = false } virtual-fs = { path = "../../../lib/virtual-fs", version = "0.18.0" } anyhow = "1.0" diff --git a/tests/wasi-wast/Cargo.toml b/tests/wasi-wast/Cargo.toml index 9848e2b63..1df9987df 100644 --- a/tests/wasi-wast/Cargo.toml +++ b/tests/wasi-wast/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasi-test-generator" -version = "5.0.0-rc.1" +version = "5.0.0" description = "Tests for our WASI implementation" license = "MIT" authors = ["Wasmer Engineering Team "] diff --git a/tests/wasmer-argus/Cargo.toml b/tests/wasmer-argus/Cargo.toml index 6aa3db608..1330a4661 100644 --- a/tests/wasmer-argus/Cargo.toml +++ b/tests/wasmer-argus/Cargo.toml @@ -24,7 +24,7 @@ clap = {version = "4.4.11", features = ["derive", "string"]} tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } serde = { version = "1.0.197", features = ["derive"] } serde_json = "1.0.114" -wasmer = { version = "5.0.0-rc.1", path = "../../lib/api", features = ["engine", "core", "singlepass", "cranelift", "llvm"], optional = true } +wasmer = { version = "5.0.0", path = "../../lib/api", features = ["engine", "core", "singlepass", "cranelift", "llvm"], optional = true } derive_more = "0.99.17" webc.workspace = true async-trait = "0.1.77"