From a167a2a5ad3529987dad3c83c72c9374a8447a9a Mon Sep 17 00:00:00 2001 From: "graphql-ws-client-releaser[bot]" <166155226+graphql-ws-client-releaser[bot]@users.noreply.github.com> Date: Sat, 8 Jun 2024 16:20:04 +0000 Subject: [PATCH] release: v0.10.1 (#110) --- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- examples-wasm/Cargo.toml | 2 +- examples/Cargo.toml | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) 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"]