Skip to content

Commit

Permalink
Resolves incorrect versioning (#51)
Browse files Browse the repository at this point in the history
* Resolves incorrect versioning

* Bump version
  • Loading branch information
SirCipher authored Sep 30, 2024
1 parent f2a4b67 commit f234648
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
8 changes: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,19 @@ members = [
]

[workspace.package]
version = "1.1.0"
version = "1.1.1"
authors = ["Swim Inc. developers [email protected]"]
edition = "2021"
categories = ["network-programming", "asynchronous", "web-programming::websocket"]
license = "Apache-2.0"

[workspace.dependencies]
ratchet = { package = "ratchet_rs", version = "1.1.1", path = "ratchet_rs" }
ratchet_core = { version = "1.1.1", path = "ratchet_core" }
ratchet_ext = { version = "1.1.1", path = "ratchet_ext" }
ratchet_deflate = { version = "1.1.1", path = "ratchet_deflate" }
ratchet_fixture = { version = "1.1.1", path = "ratchet_fixture" }

url = "2.1.1"
http = "1.1.0"
tokio = "1.22"
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.3", path = "../ratchet_ext" }
ratchet_ext = { workspace = true }
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.3", path = "../ratchet_ext" }
ratchet_ext = { workspace = true }
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.3", path = "../ratchet_rs", features = ["split", "deflate", "fixture"] }
ratchet = { workspace = true, 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.3", path = "../ratchet_core" }
ratchet_ext = { version = "1.0.3", path = "../ratchet_ext" }
ratchet_deflate = { version = "1.0.3", path = "../ratchet_deflate", optional = true }
ratchet_core = { workspace = true }
ratchet_ext = { workspace = true }
ratchet_deflate = { workspace = true, optional = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
log = { workspace = true }

Expand Down

0 comments on commit f234648

Please sign in to comment.