Skip to content

Commit 9bb3352

Browse files
committed
Prepare 0.17.0 release of juniper_subscriptions crate (#1198)
1 parent 8c74d91 commit 9bb3352

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

book/src/schema/subscriptions.md

+2-2
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/latest/juniper_subscriptions/struct.Coordinator.html
153-
[`Connection`]: https://docs.rs/juniper_subscriptions/latest/juniper_subscriptions/struct.Connection.html
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
154154
[`Future`]: https://doc.rust-lang.org/stable/std/future/trait.Future.html
155155
[`GraphQLError`]: https://docs.rs/juniper/0.16.0/juniper/enum.GraphQLError.html
156156
[`Stream`]: https://docs.rs/futures/latest/futures/stream/trait.Stream.html

juniper_graphql_ws/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ graphql-ws = []
2727

2828
[dependencies]
2929
juniper = { version = "0.16.0", path = "../juniper", default-features = false }
30-
juniper_subscriptions = { version = "0.17.0-dev", path = "../juniper_subscriptions" }
30+
juniper_subscriptions = { version = "0.17.0", path = "../juniper_subscriptions" }
3131
serde = { version = "1.0.122", features = ["derive"], default-features = false }
3232
tokio = { version = "1.0", features = ["macros", "rt", "time"], default-features = false }
3333

juniper_subscriptions/CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ All user visible changes to `juniper_subscriptions` crate will be documented in
66

77

88

9-
## master
9+
## [0.17.0] · 2024-03-20
10+
[0.17.0]: /../../tree/juniper_subscriptions-v0.17.0/juniper_subscriptions
1011

1112
### BC Breaks
1213

juniper_subscriptions/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "juniper_subscriptions"
3-
version = "0.17.0-dev"
3+
version = "0.17.0"
44
edition = "2021"
55
rust-version = "1.73"
66
description = "Juniper `SubscriptionCoordinator` and `SubscriptionConnection` implementations."

juniper_subscriptions/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![CI](https://github.com/graphql-rust/juniper/workflows/CI/badge.svg?branch=master "CI")](https://github.com/graphql-rust/juniper/actions?query=workflow%3ACI+branch%3Amaster)
77
[![Rust 1.73+](https://img.shields.io/badge/rustc-1.73+-lightgray.svg "Rust 1.73+")](https://blog.rust-lang.org/2023/10/05/Rust-1.73.0.html)
88

9-
- [Changelog](https://github.com/graphql-rust/juniper/blob/master/juniper_subscriptions/CHANGELOG.md)
9+
- [Changelog](https://github.com/graphql-rust/juniper/blob/juniper_subscriptions-v0.17.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/master/juniper_subscriptions/LICENSE).
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).
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/master/juniper_warp/examples/subscription.rs
46+
[1]: https://github.com/graphql-rust/juniper/blob/juniper_subscriptions-v0.17.0/juniper_warp/examples/subscription.rs

0 commit comments

Comments
 (0)