Skip to content

Commit

Permalink
chore: bump crate versions
Browse files Browse the repository at this point in the history
Signed-off-by: Roman Volosatovs <[email protected]>
  • Loading branch information
rvolosatovs committed Nov 6, 2024
1 parent ecc9711 commit 156570f
Show file tree
Hide file tree
Showing 13 changed files with 44 additions and 44 deletions.
46 changes: 23 additions & 23 deletions Cargo.lock

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

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -159,27 +159,27 @@ wasi = { version = "0.13", default-features = false }
wasi-preview1-component-adapter-provider = { version = "25", default-features = false }
wasm-tokio = { version = "0.6", default-features = false }
wasmparser = { version = "0.219", default-features = false }
wasmtime = { version = "25", default-features = false }
wasmtime-cli-flags = { version = "25", default-features = false }
wasmtime-wasi = { version = "25", default-features = false }
wasmtime = { version = "25.0.3", default-features = false }
wasmtime-cli-flags = { version = "25.0.3", default-features = false }
wasmtime-wasi = { version = "25.0.3", default-features = false }
wit-bindgen = { version = "0.34", default-features = false }
wit-bindgen-core = { version = "0.34", default-features = false }
wit-bindgen-wrpc = { version = "0.8", default-features = false, path = "./crates/wit-bindgen" }
wit-bindgen-wrpc-go = { version = "0.10", default-features = false, path = "./crates/wit-bindgen-go" }
wit-bindgen-wrpc-rust = { version = "0.8", default-features = false, path = "./crates/wit-bindgen-rust" }
wit-bindgen-wrpc-rust-macro = { version = "0.8", default-features = false, path = "./crates/wit-bindgen-rust-macro" }
wit-bindgen-wrpc = { version = "0.9", default-features = false, path = "./crates/wit-bindgen" }
wit-bindgen-wrpc-go = { version = "0.11", default-features = false, path = "./crates/wit-bindgen-go" }
wit-bindgen-wrpc-rust = { version = "0.9", default-features = false, path = "./crates/wit-bindgen-rust" }
wit-bindgen-wrpc-rust-macro = { version = "0.9", default-features = false, path = "./crates/wit-bindgen-rust-macro" }
wit-component = { version = "0.219", default-features = false }
wit-parser = { version = "0.219", default-features = false }
wrpc-cli = { version = "0.4", path = "./crates/cli", default-features = false }
wrpc-introspect = { version = "0.5", default-features = false, path = "./crates/introspect" }
wrpc-introspect = { version = "0.6", default-features = false, path = "./crates/introspect" }
wrpc-runtime-wasmtime = { version = "0.24.1", path = "./crates/runtime-wasmtime", default-features = false }
wrpc-test = { path = "./crates/test", default-features = false }
wrpc-transport = { version = "0.28.2", path = "./crates/transport", default-features = false }
wrpc-transport = { version = "0.28.3", path = "./crates/transport", default-features = false }
wrpc-transport-nats = { version = "0.27.1", path = "./crates/transport-nats", default-features = false }
wrpc-transport-quic = { version = "0.4", path = "./crates/transport-quic", default-features = false }
wrpc-transport-web = { version = "0.1", path = "./crates/transport-web", default-features = false }
wrpc-wasi-keyvalue = { version = "0.1", path = "./crates/wasi-keyvalue", default-features = false }
wrpc-wasi-keyvalue-mem = { version = "0.1", path = "./crates/wasi-keyvalue-mem", default-features = false }
wrpc-wasi-keyvalue-redis = { version = "0.1", path = "./crates/wasi-keyvalue-redis", default-features = false }
wrpc-wasmtime-cli = { version = "0.2", path = "./crates/wasmtime-cli", default-features = false }
wrpc-wasmtime-cli = { version = "0.3", path = "./crates/wasmtime-cli", default-features = false }
wtransport = { version = "0.4", default-features = false }
2 changes: 1 addition & 1 deletion crates/introspect/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wrpc-introspect"
version = "0.5.0"
version = "0.6.0"
description = "Component type introspection for wRPC"

authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/pack/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wrpc-pack"
version = "0.3.0"
version = "0.3.1"
description = "Temporary stopgap solution for encoding fully-synchronous wRPC values"

authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/runtime-wasmtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wrpc-runtime-wasmtime"
version = "0.24.1"
version = "0.24.2"
description = "wRPC wasmtime integration"

authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wrpc-test"
version = "0.1.0"
version = "0.2.0"
description = "wRPC test utilities"

authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/transport/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wrpc-transport"
version = "0.28.3"
version = "0.28.4"
description = "wRPC core transport functionality"

authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/wasi-keyvalue/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wrpc-wasi-keyvalue"
version = "0.1.0"
version = "0.1.1"
description = "`wasi:keyvalue` bindings for wRPC"

authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/wasmtime-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wrpc-wasmtime-cli"
version = "0.2.0"
version = "0.3.0"
description = "wRPC Wasmtime CLI"

authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/wit-bindgen-go/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wit-bindgen-wrpc-go"
version = "0.10.0"
version = "0.11.0"
description = """
Go bindings generator for wRPC
"""
Expand Down
2 changes: 1 addition & 1 deletion crates/wit-bindgen-rust-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wit-bindgen-wrpc-rust-macro"
version = "0.8.0"
version = "0.9.0"
description = """
Procedural macro paired with the `wit-bindgen-wrpc` crate.
"""
Expand Down
2 changes: 1 addition & 1 deletion crates/wit-bindgen-rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wit-bindgen-wrpc-rust"
version = "0.8.0"
version = "0.9.0"
description = """
Rust bindings generator for wRPC, typically used through
the `wit-bindgen-wrpc` crate's `generate!` macro.
Expand Down
2 changes: 1 addition & 1 deletion crates/wit-bindgen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wit-bindgen-wrpc"
version = "0.8.0"
version = "0.9.0"
description = """
Rust bindings generator for wRPC.
"""
Expand Down

0 comments on commit 156570f

Please sign in to comment.