Skip to content

Commit

Permalink
Merge pull request #29 from swimos/release
Browse files Browse the repository at this point in the history
Release 1.0.0
  • Loading branch information
SirCipher authored Jun 6, 2024
2 parents ad85d7a + 17d15b6 commit 7c3a23c
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 12 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
on: [ pull_request ]
on:
pull_request:
push:
branches: main

name: Continuous integration

Expand Down
4 changes: 2 additions & 2 deletions ratchet_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ratchet_core"
version = "0.4.2"
version = "1.0.0"
authors = ["Swim Inc. developers info@swim.ai"]
edition = "2021"
description = "Async WebSocket implementation"
Expand All @@ -16,7 +16,7 @@ split = ["futures"]
fixture = []

[dependencies]
ratchet_ext = { version = "0.4.2", path = "../ratchet_ext" }
ratchet_ext = { version = "1.0.0", path = "../ratchet_ext" }
url = { workspace = true }
http = { workspace = true }
tokio = { workspace = true, features = ["rt", "net", "io-util"] }
Expand Down
4 changes: 2 additions & 2 deletions ratchet_deflate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ratchet_deflate"
version = "0.4.2"
version = "1.0.0"
authors = ["Swim Inc. developers info@swim.ai"]
edition = "2021"
description = "Permessage Deflate for Ratchet"
Expand All @@ -11,7 +11,7 @@ readme = "README.md"
repository = "https://github.com/swimos/ratchet/"

[dependencies]
ratchet_ext = { version = "0.4.2", path = "../ratchet_ext" }
ratchet_ext = { version = "1.0.0", path = "../ratchet_ext" }
thiserror = { workspace = true }
http = { workspace = true }
bytes = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion ratchet_ext/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ratchet_ext"
version = "0.4.2"
version = "1.0.0"
authors = ["Swim Inc. developers info@swim.ai"]
edition = "2021"
description = "WebSocket extensions for Ratchet"
Expand Down
4 changes: 2 additions & 2 deletions ratchet_fixture/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ratchet_fixture"
version = "0.4.2"
version = "1.0.0"
edition = "2021"
description = "Ratchet fixture"
keywords = ["websocket", "async", "futures", "tokio"]
Expand All @@ -10,7 +10,7 @@ readme = "README.md"
repository = "https://github.com/swimos/ratchet/"

[dependencies]
ratchet = { package = "ratchet_rs", version = "0.4.2", path = "../ratchet_rs", features = ["split", "deflate", "fixture"] }
ratchet = { package = "ratchet_rs", version = "1.0.0", path = "../ratchet_rs", features = ["split", "deflate", "fixture"] }
tokio = { workspace = true, features = ["io-util"] }
bytes = { workspace = true }
futures = { workspace = true }
Expand Down
8 changes: 4 additions & 4 deletions ratchet_rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ratchet_rs"
version = "0.4.2"
version = "1.0.0"
authors = ["Swim Inc. developers info@swim.ai"]
edition = "2021"
description = "Async WebSocket implementation"
Expand All @@ -17,9 +17,9 @@ split = ["ratchet_core/split"]
fixture = ["ratchet_core/fixture"]

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

Expand Down

0 comments on commit 7c3a23c

Please sign in to comment.