Skip to content

Commit

Permalink
release: v0.10.0 (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
graphql-ws-client-releaser[bot] authored Jun 8, 2024
1 parent c6ecd25 commit ee7848e
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 8 deletions.
30 changes: 26 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,42 @@ all APIs might be changed.

## Unreleased

## v0.10.0 - 2024-06-08

### Breaking Changes

- All Connection trait functions now return impl Future instead of BoxFuture
([#108](https://github.com/obmarg/graphql-ws-client/pull/108))
- Removed the legacy API that was deprecated in v0.8.0
([#81](https://github.com/obmarg/graphql-ws-client/pull/81))
- The deprecated `async-tungstenite` feature has been removed. Use the
`tungstenite` feature instead, which works with `async-tungtenite`,
`tokio-tungstenite` and any other library that provides a
`futures::{Stream, Sink}` based tungsetenite interface.
([#106](https://github.com/obmarg/graphql-ws-client/pull/106))

### Changes

- MSRV is now 1.76
- Updated dependencies ([#100](https://github.com/obmarg/graphql-ws-client/pull/100))
- `tungstenite` `0.23`
- `graphql_client` `0.14`
- Removed unused dependencies ([#105](https://github.com/obmarg/graphql-ws-client/pull/105))
- `async-trait`
- `pin-project-lite`

### Contributors

Thanks to the people who contributed to this release:

- @carlocorradini

## v0.9.0 - 2024-06-08

### Breaking Changes

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

### New Features

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphql-ws-client"
version = "0.9.0"
version = "0.10.0"
authors = ["Graeme Coupar <[email protected]>"]
edition = "2021"
resolver = "2"
Expand Down
2 changes: 1 addition & 1 deletion examples-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ console_log = "1"

[dependencies.graphql-ws-client]
path = "../"
version = "0.9.0"
version = "0.10.0"
default-features = false
features = ["cynic", "ws_stream_wasm"]

Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ tokio = { version = "1.15", features = ["rt-multi-thread", "macros"] }

[dependencies.graphql-ws-client]
path = "../"
version = "0.9.0"
version = "0.10.0"
default-features = false
features = ["cynic", "tungstenite"]

Expand Down

0 comments on commit ee7848e

Please sign in to comment.