Skip to content

Commit

Permalink
Release 1.0.3 (#35)
Browse files Browse the repository at this point in the history
* Update to Rust 1.80.0

* Release 1.0.3
  • Loading branch information
SirCipher committed Jul 25, 2024
1 parent aec7433 commit b9db2ea
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ members = [
]

[workspace.package]
version = "1.0.2"
version = "1.0.3"
authors = ["Swim Inc. developers info@swim.ai"]
edition = "2021"
categories = ["network-programming", "asynchronous", "web-programming::websocket"]
Expand Down
2 changes: 1 addition & 1 deletion ratchet_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ split = ["futures"]
fixture = []

[dependencies]
ratchet_ext = { version = "1.0.2", path = "../ratchet_ext" }
ratchet_ext = { version = "1.0.3", path = "../ratchet_ext" }
url = { workspace = true }
http = { workspace = true }
tokio = { workspace = true, features = ["rt", "net", "io-util"] }
Expand Down
2 changes: 1 addition & 1 deletion ratchet_deflate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license.workspace = true
categories.workspace = true

[dependencies]
ratchet_ext = { version = "1.0.2", path = "../ratchet_ext" }
ratchet_ext = { version = "1.0.3", path = "../ratchet_ext" }
thiserror = { workspace = true }
http = { workspace = true }
bytes = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion ratchet_fixture/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license.workspace = true
categories.workspace = true

[dependencies]
ratchet = { package = "ratchet_rs", version = "1.0.2", path = "../ratchet_rs", features = ["split", "deflate", "fixture"] }
ratchet = { package = "ratchet_rs", version = "1.0.3", path = "../ratchet_rs", features = ["split", "deflate", "fixture"] }
tokio = { workspace = true, features = ["io-util"] }
bytes = { workspace = true }
futures = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions ratchet_rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ split = ["ratchet_core/split"]
fixture = ["ratchet_core/fixture"]

[dependencies]
ratchet_core = { version = "1.0.2", path = "../ratchet_core" }
ratchet_ext = { version = "1.0.2", path = "../ratchet_ext" }
ratchet_deflate = { version = "1.0.2", path = "../ratchet_deflate", optional = true }
ratchet_core = { version = "1.0.3", path = "../ratchet_core" }
ratchet_ext = { version = "1.0.3", path = "../ratchet_ext" }
ratchet_deflate = { version = "1.0.3", path = "../ratchet_deflate", optional = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
log = { workspace = true }

Expand Down

0 comments on commit b9db2ea

Please sign in to comment.