Skip to content

Commit ee7848e

Browse files
release: v0.10.0 (#104)
1 parent c6ecd25 commit ee7848e

File tree

5 files changed

+30
-8
lines changed

5 files changed

+30
-8
lines changed

CHANGELOG.md

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,42 @@ all APIs might be changed.
1111

1212
## Unreleased
1313

14+
## v0.10.0 - 2024-06-08
15+
16+
### Breaking Changes
17+
18+
- All Connection trait functions now return impl Future instead of BoxFuture
19+
([#108](https://github.com/obmarg/graphql-ws-client/pull/108))
20+
- Removed the legacy API that was deprecated in v0.8.0
21+
([#81](https://github.com/obmarg/graphql-ws-client/pull/81))
22+
- The deprecated `async-tungstenite` feature has been removed. Use the
23+
`tungstenite` feature instead, which works with `async-tungtenite`,
24+
`tokio-tungstenite` and any other library that provides a
25+
`futures::{Stream, Sink}` based tungsetenite interface.
26+
([#106](https://github.com/obmarg/graphql-ws-client/pull/106))
27+
1428
### Changes
1529

1630
- MSRV is now 1.76
31+
- Updated dependencies ([#100](https://github.com/obmarg/graphql-ws-client/pull/100))
32+
- `tungstenite` `0.23`
33+
- `graphql_client` `0.14`
34+
- Removed unused dependencies ([#105](https://github.com/obmarg/graphql-ws-client/pull/105))
35+
- `async-trait`
36+
- `pin-project-lite`
37+
38+
### Contributors
39+
40+
Thanks to the people who contributed to this release:
41+
42+
- @carlocorradini
1743

1844
## v0.9.0 - 2024-06-08
1945

2046
### Breaking Changes
2147

2248
- The `no-logging` feature has been removed in favour of a default `logging`
2349
feature ([#97](https://github.com/obmarg/graphql-ws-client/pull/97))
24-
- The deprecated `async-tungstenite` feature has been removed. Use the
25-
`tungstenite` feature instead, which works with `async-tungtenite`,
26-
`tokio-tungstenite` and any other library that provides a
27-
`futures::{Stream, Sink}` based tungsetenite interface.
2850

2951
### New Features
3052

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.9.0"
3+
version = "0.10.0"
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
@@ -21,7 +21,7 @@ console_log = "1"
2121

2222
[dependencies.graphql-ws-client]
2323
path = "../"
24-
version = "0.9.0"
24+
version = "0.10.0"
2525
default-features = false
2626
features = ["cynic", "ws_stream_wasm"]
2727

examples/Cargo.toml

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

1919
[dependencies.graphql-ws-client]
2020
path = "../"
21-
version = "0.9.0"
21+
version = "0.10.0"
2222
default-features = false
2323
features = ["cynic", "tungstenite"]
2424

0 commit comments

Comments
 (0)