Skip to content

Commit

Permalink
Bump version to 21.0.0-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
Eduardo Leegwater Simões committed May 15, 2024
1 parent 860ec12 commit b670d38
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -159,13 +159,13 @@ all = 'allow'
[workspace.dependencies]
arbitrary = { version = "1.3.1" }
wasmtime-wmemcheck = { path = "crates/wmemcheck", version = "=20.0.0" }
wasmtime = { path = "crates/wasmtime", package = "dusk-wasmtime", version = "20.0.0", default-features = false }
wasmtime = { path = "crates/wasmtime", package = "dusk-wasmtime", version = "21.0.0-alpha", default-features = false }
wasmtime-c-api-macros = { path = "crates/c-api-macros", version = "=20.0.0" }
wasmtime-cache = { path = "crates/cache", version = "=20.0.0" }
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=20.0.0" }
wasmtime-cranelift = { path = "crates/cranelift", package = "dusk-wasmtime-cranelift", version = "=20.0.0" }
wasmtime-cranelift = { path = "crates/cranelift", package = "dusk-wasmtime-cranelift", version = "=21.0.0-alpha" }
wasmtime-winch = { path = "crates/winch", version = "=20.0.0" }
wasmtime-environ = { path = "crates/environ", package = "dusk-wasmtime-environ", version = "=20.0.0" }
wasmtime-environ = { path = "crates/environ", package = "dusk-wasmtime-environ", version = "=21.0.0-alpha" }
wasmtime-explorer = { path = "crates/explorer", version = "=20.0.0" }
wasmtime-fiber = { path = "crates/fiber", version = "=20.0.0" }
wasmtime-types = { path = "crates/types", version = "20.0.0" }
Expand Down
2 changes: 1 addition & 1 deletion crates/cranelift/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dusk-wasmtime-cranelift"
version.workspace = true
version = "21.0.0-alpha"
authors.workspace = true
description = "Integration between Cranelift and Wasmtime"
license = "Apache-2.0 WITH LLVM-exception"
Expand Down
2 changes: 1 addition & 1 deletion crates/environ/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dusk-wasmtime-environ"
version.workspace = true
version = "21.0.0-alpha"
authors.workspace = true
description = "Standalone environment support for WebAsssembly code in Cranelift"
license = "Apache-2.0 WITH LLVM-exception"
Expand Down
2 changes: 1 addition & 1 deletion crates/versioned-export-macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use quote::ToTokens;
const VERSION: &str = env!("CARGO_PKG_VERSION");

fn version(value: impl std::fmt::Display) -> String {
format!("{}_{}", value, VERSION.replace('.', "_"))
format!("{}_{}", value, VERSION.replace('.', "_").replace('-', "_"))
}

fn versioned_lit_str(value: impl std::fmt::Display) -> syn::LitStr {
Expand Down
2 changes: 1 addition & 1 deletion crates/wasmtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dusk-wasmtime"
version.workspace = true
version = "21.0.0-alpha"
authors.workspace = true
description = "High-level API to expose the Wasmtime runtime"
documentation = "https://docs.rs/wasmtime"
Expand Down

0 comments on commit b670d38

Please sign in to comment.