Skip to content

Commit

Permalink
Release 0.4.0
Browse files Browse the repository at this point in the history
stateroom@0.4.0
stateroom-cli@0.4.0
stateroom-server@0.4.0
stateroom-wasm@0.4.0
stateroom-wasm-host@0.4.0
stateroom-wasm-macro@0.4.0

Generated by cargo-workspaces
  • Loading branch information
paulgb committed May 5, 2024
1 parent cb3d45d commit 90cd16e
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 20 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ exclude = [
members = [
"stateroom",
"stateroom-*",
]
]
8 changes: 4 additions & 4 deletions stateroom-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stateroom-cli"
version = "0.2.9"
version = "0.4.0"
edition = "2018"
readme = "README.md"
repository = "https://github.com/drifting-in-space/stateroom"
Expand All @@ -14,9 +14,9 @@ cargo_metadata = "0.18.1"
clap = { version = "4.1.6", features = ["derive"] }
fs_extra = "1.2.0"
serde = { version = "1.0.127", features = ["derive"] }
stateroom = { path="../stateroom", version="0.2.8" }
stateroom-server = { path="../stateroom-server", version="0.3.0" }
stateroom-wasm-host = { path="../stateroom-wasm-host", version="0.2.8" }
stateroom = { path="../stateroom", version="0.4.0" }
stateroom-server = { path="../stateroom-server", version="0.4.0" }
stateroom-wasm-host = { path="../stateroom-wasm-host", version="0.4.0" }
toml = "0.8.12"
tracing = "0.1.28"
tracing-subscriber = { version = "0.3.5", features = ["env-filter"] }
Expand Down
4 changes: 2 additions & 2 deletions stateroom-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stateroom-server"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
readme = "README.md"
repository = "https://github.com/drifting-in-space/stateroom"
Expand All @@ -12,6 +12,6 @@ description = "Server for Stateroom services over WebSockets"
axum = { version = "0.7.5", features = ["ws"] }
dashmap = "5.5.3"
futures-util = "0.3.30"
stateroom = {path="../stateroom", version="0.2.8"}
stateroom = {path="../stateroom", version="0.4.0"}
tokio = { version = "1.37.0", features = ["rt-multi-thread"] }
tracing = "0.1.40"
4 changes: 2 additions & 2 deletions stateroom-wasm-host/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stateroom-wasm-host"
version = "0.2.9"
version = "0.4.0"
edition = "2018"
readme = "README.md"
repository = "https://github.com/drifting-in-space/stateroom"
Expand All @@ -11,7 +11,7 @@ description = "A Stateroom service implementation that takes a WebAssembly modul
[dependencies]
anyhow = "1.0.45"
byteorder = "1.4.3"
stateroom = {path="../stateroom", version="0.2.8", features=["serde"]}
stateroom = {path="../stateroom", version="0.4.0", features=["serde"]}
wasmtime = "20.0.0"
tracing = "0.1.28"
wasi-common = "20.0.0"
Expand Down
6 changes: 3 additions & 3 deletions stateroom-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stateroom-wasm"
version = "0.2.9"
version = "0.4.0"
edition = "2018"
readme = "README.md"
repository = "https://github.com/drifting-in-space/stateroom"
Expand All @@ -9,6 +9,6 @@ keywords = ["websocket", "webassembly", "stateroom"]
description = "A macro for building a Stateroom service as a WebAssembly module."

[dependencies]
stateroom-wasm-macro = {path="./stateroom-wasm-macro", version="0.2.8"}
stateroom = {path="../stateroom", version="0.2.8", features=["serde"]}
stateroom-wasm-macro = {path="./stateroom-wasm-macro", version="0.4.0"}
stateroom = {path="../stateroom", version="0.4.0", features=["serde"]}
bincode = "1.3.3"
2 changes: 1 addition & 1 deletion stateroom-wasm/stateroom-wasm-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stateroom-wasm-macro"
version = "0.2.9"
version = "0.4.0"
authors = ["Paul Butler <paulgb@gmail.com>"]
edition = "2018"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion stateroom/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stateroom"
version = "0.2.8"
version = "0.4.0"
authors = ["Paul Butler <paulgb@gmail.com>"]
edition = "2018"
readme = "../README.md"
Expand Down

0 comments on commit 90cd16e

Please sign in to comment.