Skip to content

Commit 483779e

Browse files
committed
Bumps versions
1 parent fd60da5 commit 483779e

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

ratchet_core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ratchet_core"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
authors = ["Swim Inc. developers [email protected]"]
55
edition = "2021"
66
description = "Async WebSocket implementation"
@@ -16,7 +16,7 @@ split = ["futures"]
1616
fixture = []
1717

1818
[dependencies]
19-
ratchet_ext = { version = "1.0.1", path = "../ratchet_ext" }
19+
ratchet_ext = { version = "1.0.2", path = "../ratchet_ext" }
2020
url = { workspace = true }
2121
http = { workspace = true }
2222
tokio = { workspace = true, features = ["rt", "net", "io-util"] }

ratchet_deflate/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ratchet_deflate"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
authors = ["Swim Inc. developers [email protected]"]
55
edition = "2021"
66
description = "Permessage Deflate for Ratchet"
@@ -11,7 +11,7 @@ readme = "README.md"
1111
repository = "https://github.com/swimos/ratchet/"
1212

1313
[dependencies]
14-
ratchet_ext = { version = "1.0.1", path = "../ratchet_ext" }
14+
ratchet_ext = { version = "1.0.2", path = "../ratchet_ext" }
1515
thiserror = { workspace = true }
1616
http = { workspace = true }
1717
bytes = { workspace = true }

ratchet_ext/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ratchet_ext"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
authors = ["Swim Inc. developers [email protected]"]
55
edition = "2021"
66
description = "WebSocket extensions for Ratchet"

ratchet_fixture/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ratchet_fixture"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
edition = "2021"
55
description = "Ratchet fixture"
66
keywords = ["websocket", "async", "futures", "tokio"]
@@ -10,7 +10,7 @@ readme = "README.md"
1010
repository = "https://github.com/swimos/ratchet/"
1111

1212
[dependencies]
13-
ratchet = { package = "ratchet_rs", version = "1.0.1", path = "../ratchet_rs", features = ["split", "deflate", "fixture"] }
13+
ratchet = { package = "ratchet_rs", version = "1.0.2", path = "../ratchet_rs", features = ["split", "deflate", "fixture"] }
1414
tokio = { workspace = true, features = ["io-util"] }
1515
bytes = { workspace = true }
1616
futures = { workspace = true }

ratchet_rs/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ratchet_rs"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
authors = ["Swim Inc. developers [email protected]"]
55
edition = "2021"
66
description = "Async WebSocket implementation"
@@ -17,9 +17,9 @@ split = ["ratchet_core/split"]
1717
fixture = ["ratchet_core/fixture"]
1818

1919
[dependencies]
20-
ratchet_core = { version = "1.0.1", path = "../ratchet_core" }
21-
ratchet_ext = { version = "1.0.1", path = "../ratchet_ext" }
22-
ratchet_deflate = { version = "1.0.1", path = "../ratchet_deflate", optional = true }
20+
ratchet_core = { version = "1.0.2", path = "../ratchet_core" }
21+
ratchet_ext = { version = "1.0.2", path = "../ratchet_ext" }
22+
ratchet_deflate = { version = "1.0.2", path = "../ratchet_deflate", optional = true }
2323
tracing-subscriber = { workspace = true, features = ["env-filter"] }
2424
log = { workspace = true }
2525

0 commit comments

Comments
 (0)