From 280127b99c5343f59094202d206963cf80cc55fc Mon Sep 17 00:00:00 2001 From: "graphql-ws-client-releaser[bot]" <166155226+graphql-ws-client-releaser[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 10:34:53 +0100 Subject: [PATCH] release: v0.11.0 (#122) --- CHANGELOG.md | 12 ++++++++++++ Cargo.lock | 6 +++--- Cargo.toml | 2 +- examples-wasm/Cargo.toml | 4 ++-- examples/Cargo.toml | 4 ++-- 5 files changed, 20 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56e7042..105dc53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,18 @@ all APIs might be changed. ## Unreleased +## v0.11.0 - 2024-10-25 + +### Changes + +- Updated tungstenite bounds to support 0.24 as well as 0.23. ([#121](https://github.com/obmarg/graphql-ws-client/pull/121)) + +### Contributors + +Thanks to the people who contributed to this release: + +- @Sytten + ## v0.10.2 - 2024-08-21 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 15d6d62..734b155 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -792,7 +792,7 @@ dependencies = [ [[package]] name = "examples" -version = "0.1.0" +version = "0.11.0" dependencies = [ "async-std", "async-tungstenite", @@ -807,7 +807,7 @@ dependencies = [ [[package]] name = "examples-wasm" -version = "0.1.0" +version = "0.11.0" dependencies = [ "async-std", "console_log", @@ -1043,7 +1043,7 @@ dependencies = [ [[package]] name = "graphql-ws-client" -version = "0.10.2" +version = "0.11.0" dependencies = [ "assert_matches", "async-channel 2.3.1", diff --git a/Cargo.toml b/Cargo.toml index a42e757..427d18b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphql-ws-client" -version = "0.10.2" +version = "0.11.0" authors = ["Graeme Coupar "] edition = "2021" resolver = "2" diff --git a/examples-wasm/Cargo.toml b/examples-wasm/Cargo.toml index e87ec99..cef51c4 100644 --- a/examples-wasm/Cargo.toml +++ b/examples-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "examples-wasm" -version = "0.1.0" +version = "0.11.0" authors = ["Graeme Coupar "] edition = "2018" publish = false @@ -21,7 +21,7 @@ console_log = "1" [dependencies.graphql-ws-client] path = "../" -version = "0.10.2" +version = "0.11.0" default-features = false features = ["cynic", "ws_stream_wasm"] diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 1e8c86d..984eaf6 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "examples" -version = "0.1.0" +version = "0.11.0" authors = ["Graeme Coupar "] edition = "2018" publish = false @@ -21,7 +21,7 @@ tokio = { version = "1.15", features = ["rt-multi-thread", "macros"] } [dependencies.graphql-ws-client] path = "../" -version = "0.10.2" +version = "0.11.0" default-features = false features = ["cynic", "tungstenite"]