diff --git a/CHANGELOG.md b/CHANGELOG.md index 390a36d..a3f868f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,13 @@ all APIs might be changed. ## Unreleased +## v0.10.1 - 2024-06-08 + +### Bug Fixes + +- Fixed some compile errors when `ws_stream_wasm` was enabled and `tungstenite` + was not ([#111](https://github.com/obmarg/graphql-ws-client/pull/111)) + ## v0.10.0 - 2024-06-08 ### Breaking Changes diff --git a/Cargo.lock b/Cargo.lock index 527d9ff..f85ee1e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1043,7 +1043,7 @@ dependencies = [ [[package]] name = "graphql-ws-client" -version = "0.10.0" +version = "0.10.1" dependencies = [ "assert_matches", "async-channel 2.3.1", diff --git a/Cargo.toml b/Cargo.toml index 3f3b89d..9c3c8ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphql-ws-client" -version = "0.10.0" +version = "0.10.1" authors = ["Graeme Coupar "] edition = "2021" resolver = "2" diff --git a/examples-wasm/Cargo.toml b/examples-wasm/Cargo.toml index f77a9a1..d5e1d28 100644 --- a/examples-wasm/Cargo.toml +++ b/examples-wasm/Cargo.toml @@ -21,7 +21,7 @@ console_log = "1" [dependencies.graphql-ws-client] path = "../" -version = "0.10.0" +version = "0.10.1" default-features = false features = ["cynic", "ws_stream_wasm"] diff --git a/examples/Cargo.toml b/examples/Cargo.toml index a67fae5..30179be 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -18,7 +18,7 @@ tokio = { version = "1.15", features = ["rt-multi-thread", "macros"] } [dependencies.graphql-ws-client] path = "../" -version = "0.10.0" +version = "0.10.1" default-features = false features = ["cynic", "tungstenite"]