Skip to content

Commit 892b4d6

Browse files
committed
Bump version
1 parent 519a809 commit 892b4d6

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 = "0.4.1"
3+
version = "0.4.2"
44
authors = ["Swim Inc. developers [email protected]"]
55
edition = "2021"
66
description = "Async WebSocket implementation"
@@ -16,7 +16,7 @@ split = ["futures", "futures-util"]
1616
fixture = []
1717

1818
[dependencies]
19-
ratchet_ext = { version = "0.4.1", path = "../ratchet_ext" }
19+
ratchet_ext = { version = "0.4.2", path = "../ratchet_ext" }
2020
url = "2.1.1"
2121
http = "0.2.3"
2222
tokio = { version = "1.1.1", 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 = "0.4.1"
3+
version = "0.4.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 = "0.4.1", path = "../ratchet_ext" }
14+
ratchet_ext = { version = "0.4.2", path = "../ratchet_ext" }
1515
thiserror = "1.0"
1616
http = "0.2.3"
1717
bytes = "1.0"

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 = "0.4.1"
3+
version = "0.4.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 = "0.4.1"
3+
version = "0.4.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 = "0.4.1", path = "../ratchet_rs", features = ["split", "deflate", "fixture"] }
13+
ratchet = { package = "ratchet_rs", version = "0.4.2", path = "../ratchet_rs", features = ["split", "deflate", "fixture"] }
1414
tokio = { version = "1.1.1", features = ["io-util"] }
1515
bytes = "1.0"
1616
futures = "0.3.4"

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 = "0.4.1"
3+
version = "0.4.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 = "0.4.1", path = "../ratchet_core" }
21-
ratchet_ext = { version = "0.4.1", path = "../ratchet_ext" }
22-
ratchet_deflate = { version = "0.4.1", path = "../ratchet_deflate", optional = true }
20+
ratchet_core = { version = "0.4.2", path = "../ratchet_core" }
21+
ratchet_ext = { version = "0.4.2", path = "../ratchet_ext" }
22+
ratchet_deflate = { version = "0.4.2", path = "../ratchet_deflate", optional = true }
2323

2424
[dev-dependencies]
2525
tokio = { version = "1.1.1", features = ["rt-multi-thread", "macros", "test-util"] }

0 commit comments

Comments
 (0)