Skip to content

Commit 01ce959

Browse files
chore: release v0.8.2 (#83)
1 parent abb80bc commit 01ce959

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ This project intends to inhere to [Semantic
99
Versioning](http://semver.org/spec/v2.0.0.html), but has not yet reached 1.0 so
1010
all APIs might be changed.
1111

12+
## [0.8.2](https://github.com/obmarg/graphql-ws-client/compare/v0.8.1...v0.8.2) - 2024-04-09
13+
14+
### Changes
15+
- `Client::subscribe` now takes `&self` instead of `&mut self`, to make sharing a
16+
`Client` among threads easier ([#88](https://github.com/obmarg/graphql-ws-client/pull/88))
17+
- `Client` is now clone, again to make sharing among threads easier
18+
([#88](https://github.com/obmarg/graphql-ws-client/pull/88))
19+
1220
## v0.8.1 - 2024-03-21
1321

1422
### Fixes

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graphql-ws-client"
3-
version = "0.8.1"
3+
version = "0.8.2"
44
authors = ["Graeme Coupar <[email protected]>"]
55
edition = "2021"
66
resolver = "2"

examples-wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ console_log = "1"
2222

2323
[dependencies.graphql-ws-client]
2424
path = "../"
25-
version = "0.8.0"
25+
version = "0.8.2"
2626
default-features = false
2727
features = ["cynic", "ws_stream_wasm"]
2828

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ tokio = { version = "1.15", features = ["rt-multi-thread", "macros"] }
1919

2020
[dependencies.graphql-ws-client]
2121
path = "../"
22-
version = "0.8.0"
22+
version = "0.8.2"
2323
default-features = false
2424
features = ["cynic", "async-tungstenite"]
2525

0 commit comments

Comments
 (0)