Skip to content

Commit

Permalink
Prepare 0.17.0 release of juniper_subscriptions crate (#1198)
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed Mar 20, 2024
1 parent 8c74d91 commit 9bb3352
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions book/src/schema/subscriptions.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ For information about serving [GraphQL subscriptions][9] over [WebSocket], see t



[`Coordinator`]: https://docs.rs/juniper_subscriptions/latest/juniper_subscriptions/struct.Coordinator.html
[`Connection`]: https://docs.rs/juniper_subscriptions/latest/juniper_subscriptions/struct.Connection.html
[`Coordinator`]: https://docs.rs/juniper_subscriptions/0.17.0/juniper_subscriptions/struct.Coordinator.html
[`Connection`]: https://docs.rs/juniper_subscriptions/0.17.0/juniper_subscriptions/struct.Connection.html
[`Future`]: https://doc.rust-lang.org/stable/std/future/trait.Future.html
[`GraphQLError`]: https://docs.rs/juniper/0.16.0/juniper/enum.GraphQLError.html
[`Stream`]: https://docs.rs/futures/latest/futures/stream/trait.Stream.html
Expand Down
2 changes: 1 addition & 1 deletion juniper_graphql_ws/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ graphql-ws = []

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

Expand Down
3 changes: 2 additions & 1 deletion juniper_subscriptions/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ All user visible changes to `juniper_subscriptions` crate will be documented in



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

### BC Breaks

Expand Down
2 changes: 1 addition & 1 deletion juniper_subscriptions/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "juniper_subscriptions"
version = "0.17.0-dev"
version = "0.17.0"
edition = "2021"
rust-version = "1.73"
description = "Juniper `SubscriptionCoordinator` and `SubscriptionConnection` implementations."
Expand Down
6 changes: 3 additions & 3 deletions juniper_subscriptions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![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)
[![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)

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

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

## License

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



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

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

0 comments on commit 9bb3352

Please sign in to comment.