Prepare 0.17.0 release of juniper_subscriptions
crate (#1198)
This commit is contained in:
parent
8c74d9132d
commit
9bb33525d4
5 changed files with 9 additions and 8 deletions
|
@ -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
|
[`Coordinator`]: https://docs.rs/juniper_subscriptions/0.17.0/juniper_subscriptions/struct.Coordinator.html
|
||||||
[`Connection`]: https://docs.rs/juniper_subscriptions/latest/juniper_subscriptions/struct.Connection.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
|
[`Future`]: https://doc.rust-lang.org/stable/std/future/trait.Future.html
|
||||||
[`GraphQLError`]: https://docs.rs/juniper/0.16.0/juniper/enum.GraphQLError.html
|
[`GraphQLError`]: https://docs.rs/juniper/0.16.0/juniper/enum.GraphQLError.html
|
||||||
[`Stream`]: https://docs.rs/futures/latest/futures/stream/trait.Stream.html
|
[`Stream`]: https://docs.rs/futures/latest/futures/stream/trait.Stream.html
|
||||||
|
|
|
@ -27,7 +27,7 @@ graphql-ws = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
juniper = { version = "0.16.0", path = "../juniper", default-features = false }
|
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 }
|
serde = { version = "1.0.122", features = ["derive"], default-features = false }
|
||||||
tokio = { version = "1.0", features = ["macros", "rt", "time"], default-features = false }
|
tokio = { version = "1.0", features = ["macros", "rt", "time"], default-features = false }
|
||||||
|
|
||||||
|
|
|
@ -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
|
### BC Breaks
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "juniper_subscriptions"
|
name = "juniper_subscriptions"
|
||||||
version = "0.17.0-dev"
|
version = "0.17.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.73"
|
rust-version = "1.73"
|
||||||
description = "Juniper `SubscriptionCoordinator` and `SubscriptionConnection` implementations."
|
description = "Juniper `SubscriptionCoordinator` and `SubscriptionConnection` implementations."
|
||||||
|
|
|
@ -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)
|
[![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)
|
[![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
|
This repository contains `SubscriptionCoordinator` and `SubscriptionConnection` implementations for
|
||||||
[`juniper`], a [GraphQL] library for Rust.
|
[`juniper`], a [GraphQL] library for Rust.
|
||||||
|
@ -34,7 +34,7 @@ Check [`juniper_warp/examples/subscription.rs`][1] for example code of a working
|
||||||
|
|
||||||
## License
|
## 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).
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -43,4 +43,4 @@ This project is licensed under [BSD 2-Clause License](https://github.com/graphql
|
||||||
[`warp`]: https://docs.rs/warp
|
[`warp`]: https://docs.rs/warp
|
||||||
[GraphQL]: http://graphql.org
|
[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
|
||||||
|
|
Loading…
Reference in a new issue