Skip to content

Commit f234648

Browse files
authored
Resolves incorrect versioning (#51)
* Resolves incorrect versioning * Bump version
1 parent f2a4b67 commit f234648

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

Cargo.toml

+7-1
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,19 @@ members = [
1414
]
1515

1616
[workspace.package]
17-
version = "1.1.0"
17+
version = "1.1.1"
1818
authors = ["Swim Inc. developers [email protected]"]
1919
edition = "2021"
2020
categories = ["network-programming", "asynchronous", "web-programming::websocket"]
2121
license = "Apache-2.0"
2222

2323
[workspace.dependencies]
24+
ratchet = { package = "ratchet_rs", version = "1.1.1", path = "ratchet_rs" }
25+
ratchet_core = { version = "1.1.1", path = "ratchet_core" }
26+
ratchet_ext = { version = "1.1.1", path = "ratchet_ext" }
27+
ratchet_deflate = { version = "1.1.1", path = "ratchet_deflate" }
28+
ratchet_fixture = { version = "1.1.1", path = "ratchet_fixture" }
29+
2430
url = "2.1.1"
2531
http = "1.1.0"
2632
tokio = "1.22"

ratchet_core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ split = ["futures"]
1616
fixture = []
1717

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

ratchet_deflate/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license.workspace = true
1010
categories.workspace = true
1111

1212
[dependencies]
13-
ratchet_ext = { version = "1.0.3", path = "../ratchet_ext" }
13+
ratchet_ext = { workspace = true }
1414
thiserror = { workspace = true }
1515
http = { workspace = true }
1616
bytes = { workspace = true }

ratchet_fixture/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license.workspace = true
1010
categories.workspace = true
1111

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

ratchet_rs/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ split = ["ratchet_core/split"]
1717
fixture = ["ratchet_core/fixture"]
1818

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

0 commit comments

Comments
 (0)