Skip to content

Commit c7406d0

Browse files
committed
Prepare 0.18.0 release of juniper_subscriptions crate
1 parent e82cfcc commit c7406d0

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

book/src/schema/subscriptions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ For information about serving [GraphQL subscriptions][9] over [WebSocket], see t
149149

150150

151151

152-
[`Coordinator`]: https://docs.rs/juniper_subscriptions/0.17.0/juniper_subscriptions/struct.Coordinator.html
153-
[`Connection`]: https://docs.rs/juniper_subscriptions/0.17.0/juniper_subscriptions/struct.Connection.html
152+
[`Coordinator`]: https://docs.rs/juniper_subscriptions/0.18.0/juniper_subscriptions/struct.Coordinator.html
153+
[`Connection`]: https://docs.rs/juniper_subscriptions/0.18.0/juniper_subscriptions/struct.Connection.html
154154
[`Future`]: https://doc.rust-lang.org/stable/std/future/trait.Future.html
155155
[`GraphQLError`]: https://docs.rs/juniper/0.17.0/juniper/enum.GraphQLError.html
156156
[`Stream`]: https://docs.rs/futures/latest/futures/stream/trait.Stream.html

juniper_graphql_ws/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ graphql-ws = []
2828
[dependencies]
2929
derive_more = { version = "2.0", features = ["debug", "from"] }
3030
juniper = { version = "0.17", path = "../juniper", default-features = false }
31-
juniper_subscriptions = { version = "0.17.0", path = "../juniper_subscriptions" }
31+
juniper_subscriptions = { version = "0.18", path = "../juniper_subscriptions" }
3232
serde = { version = "1.0.122", features = ["derive"], default-features = false }
3333
tokio = { version = "1.0", features = ["macros", "rt", "time"], default-features = false }
3434

juniper_subscriptions/CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,19 @@ All user visible changes to `juniper_subscriptions` crate will be documented in
66

77

88

9-
## master
9+
## [0.18.0] · 2025-09-08
10+
[0.18.0]: /../../tree/juniper_subscriptions-v0.18.0/juniper_subscriptions
1011

1112
### BC Breaks
1213

14+
- Switched to 0.17 version of [`juniper` crate].
1315
- Removed lifetime parameters from `Coordinator`. ([#1247], [#819])
14-
- Bumped up [MSRV] to 1.85. ([#1272], [todo])
16+
- Bumped up [MSRV] to 1.85. ([#1272], [1b1fc618])
1517

1618
[#819]: /../../issues/819
1719
[#1247]: /../../pull/1247
1820
[#1272]: /../../pull/1272
19-
[todo]: /../../commit/todo
21+
[1b1fc618]: /../../commit/1b1fc61879ffdd640d741e187dc20678bf7ab295
2022

2123

2224

juniper_subscriptions/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "juniper_subscriptions"
3-
version = "0.17.0"
3+
version = "0.18.0"
44
edition = "2024"
55
rust-version = "1.85"
66
description = "Juniper `SubscriptionCoordinator` and `SubscriptionConnection` implementations."

juniper_subscriptions/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![CI](https://github.com/graphql-rust/juniper/actions/workflows/ci.yml/badge.svg?branch=master "CI")](https://github.com/graphql-rust/juniper/actions?query=workflow%3ACI+branch%3Amaster)
77
[![Rust 1.85+](https://img.shields.io/badge/rustc-1.85+-lightgray.svg "Rust 1.85+")](https://blog.rust-lang.org/2025/02/20/Rust-1.85.0.html)
88

9-
- [Changelog](https://github.com/graphql-rust/juniper/blob/juniper_subscriptions-v0.17.0/juniper_subscriptions/CHANGELOG.md)
9+
- [Changelog](https://github.com/graphql-rust/juniper/blob/juniper_subscriptions-v0.18.0/juniper_subscriptions/CHANGELOG.md)
1010

1111
This repository contains `SubscriptionCoordinator` and `SubscriptionConnection` implementations for
1212
[`juniper`], a [GraphQL] library for Rust.
@@ -34,7 +34,7 @@ Check [`juniper_warp/examples/subscription.rs`][1] for example code of a working
3434

3535
## License
3636

37-
This project is licensed under [BSD 2-Clause License](https://github.com/graphql-rust/juniper/blob/juniper_subscriptions-v0.17.0/juniper_subscriptions/LICENSE).
37+
This project is licensed under [BSD 2-Clause License](https://github.com/graphql-rust/juniper/blob/juniper_subscriptions-v0.18.0/juniper_subscriptions/LICENSE).
3838

3939

4040

@@ -43,4 +43,4 @@ This project is licensed under [BSD 2-Clause License](https://github.com/graphql
4343
[`warp`]: https://docs.rs/warp
4444
[GraphQL]: http://graphql.org
4545

46-
[1]: https://github.com/graphql-rust/juniper/blob/juniper_subscriptions-v0.17.0/juniper_warp/examples/subscription.rs
46+
[1]: https://github.com/graphql-rust/juniper/blob/juniper_subscriptions-v0.18.0/juniper_warp/examples/subscription.rs

0 commit comments

Comments
 (0)