diff --git a/CHANGELOG.md b/CHANGELOG.md index 105dc53..4b297c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,12 @@ all APIs might be changed. ## Unreleased +## v0.11.1 - 2024-10-29 + +### Bug Fixes + +- infinite loop ([#124](https://github.com/obmarg/graphql-ws-client/pull/124)) + ## v0.11.0 - 2024-10-25 ### Changes diff --git a/Cargo.lock b/Cargo.lock index 734b155..e921f01 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1043,7 +1043,7 @@ dependencies = [ [[package]] name = "graphql-ws-client" -version = "0.11.0" +version = "0.11.1" dependencies = [ "assert_matches", "async-channel 2.3.1", diff --git a/Cargo.toml b/Cargo.toml index 427d18b..b1b5fa2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphql-ws-client" -version = "0.11.0" +version = "0.11.1" authors = ["Graeme Coupar "] edition = "2021" resolver = "2" diff --git a/examples-wasm/Cargo.toml b/examples-wasm/Cargo.toml index cef51c4..22dbe35 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.11.0" +version = "0.11.1" default-features = false features = ["cynic", "ws_stream_wasm"] diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 984eaf6..bed5f7b 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -21,7 +21,7 @@ tokio = { version = "1.15", features = ["rt-multi-thread", "macros"] } [dependencies.graphql-ws-client] path = "../" -version = "0.11.0" +version = "0.11.1" default-features = false features = ["cynic", "tungstenite"]