From f6ad8434485f0e2c0d49463dd98758b700f98af2 Mon Sep 17 00:00:00 2001 From: Graeme Coupar Date: Tue, 13 Feb 2024 12:35:03 +0000 Subject: [PATCH] Release v0.8.0-rc.2 (#79) --- CHANGELOG.md | 2 ++ Cargo.toml | 3 ++- examples-wasm/Cargo.toml | 2 +- examples/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 458262a..1ff1991 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ all APIs might be changed. ## Unreleased - xxxx-xx-xx +## v0.8.0-rc.2 - 2024-02-13 + ### Breaking Changes - `async-tungstenite` is no longer automatically enabled when adding any of the diff --git a/Cargo.toml b/Cargo.toml index a60dd2d..4907983 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphql-ws-client" -version = "0.8.0-rc.1" +version = "0.8.0-rc.2" authors = ["Graeme Coupar "] edition = "2021" resolver = "2" @@ -56,6 +56,7 @@ tokio = { version = "1", features = ["macros"] } tokio-stream = { version = "0.1", features = ["sync"] } graphql-ws-client.path = "." + graphql-ws-client.features = ["client-cynic", "client-graphql-client", "async-tungstenite"] [package.metadata.docs.rs] diff --git a/examples-wasm/Cargo.toml b/examples-wasm/Cargo.toml index 1d9447b..4d8d565 100644 --- a/examples-wasm/Cargo.toml +++ b/examples-wasm/Cargo.toml @@ -22,7 +22,7 @@ console_log = "1" [dependencies.graphql-ws-client] path = "../" -version = "0.8.0-rc.1" +version = "0.8.0-rc.2" default-features = false features = ["cynic", "ws_stream_wasm"] diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 753d514..edb9b60 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -19,7 +19,7 @@ tokio = { version = "1.15", features = ["rt-multi-thread", "macros"] } [dependencies.graphql-ws-client] path = "../" -version = "0.8.0-rc.1" +version = "0.8.0-rc.2" default-features = false features = ["cynic", "async-tungstenite"]