Prepare 0.4.0 release of juniper_graphql_ws crate (#1198)

This commit is contained in:
tyranron 2024-03-20 18:51:49 +02:00
parent 9bb33525d4
commit 731a1b0445
No known key found for this signature in database
GPG key ID: 762E144FB230A4F0
6 changed files with 8 additions and 7 deletions

View file

@ -31,7 +31,7 @@ actix-ws = { version = "0.2", optional = true }
anyhow = "1.0.47" anyhow = "1.0.47"
futures = "0.3.22" futures = "0.3.22"
juniper = { version = "0.16.0", path = "../juniper", default-features = false } juniper = { version = "0.16.0", path = "../juniper", default-features = false }
juniper_graphql_ws = { version = "0.4.0-dev", path = "../juniper_graphql_ws", features = ["graphql-transport-ws", "graphql-ws"], optional = true } juniper_graphql_ws = { version = "0.4.0", path = "../juniper_graphql_ws", features = ["graphql-transport-ws", "graphql-ws"], optional = true }
serde = { version = "1.0.122", features = ["derive"] } serde = { version = "1.0.122", features = ["derive"] }
serde_json = "1.0.18" serde_json = "1.0.18"

View file

@ -28,7 +28,7 @@ subscriptions = ["axum/ws", "juniper_graphql_ws/graphql-ws", "dep:futures"]
axum = "0.7" axum = "0.7"
futures = { version = "0.3.22", optional = true } futures = { version = "0.3.22", optional = true }
juniper = { version = "0.16.0", path = "../juniper", default-features = false } juniper = { version = "0.16.0", path = "../juniper", default-features = false }
juniper_graphql_ws = { version = "0.4.0-dev", path = "../juniper_graphql_ws", features = ["graphql-transport-ws"] } juniper_graphql_ws = { version = "0.4.0", path = "../juniper_graphql_ws", features = ["graphql-transport-ws"] }
serde = { version = "1.0.122", features = ["derive"] } serde = { version = "1.0.122", features = ["derive"] }
serde_json = "1.0.18" serde_json = "1.0.18"

View file

@ -6,7 +6,8 @@ All user visible changes to `juniper_graphql_ws` crate will be documented in thi
## master ## [0.4.0] · 2024-03-20
[0.4.0]: /../../tree/juniper_graphql_ws-v0.4.0/juniper_graphql_ws
### BC Breaks ### BC Breaks

View file

@ -1,6 +1,6 @@
[package] [package]
name = "juniper_graphql_ws" name = "juniper_graphql_ws"
version = "0.4.0-dev" version = "0.4.0"
edition = "2021" edition = "2021"
rust-version = "1.73" rust-version = "1.73"
description = "GraphQL over WebSocket Protocol implementations for `juniper` crate." description = "GraphQL over WebSocket Protocol implementations for `juniper` crate."

View file

@ -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_graphql_ws/CHANGELOG.md) - [Changelog](https://github.com/graphql-rust/juniper/blob/juniper_graphql_ws-v0.4.0/juniper_graphql_ws/CHANGELOG.md)
This crate contains implementations of 2 protocols: This crate contains implementations of 2 protocols:
@ -19,7 +19,7 @@ This crate contains implementations of 2 protocols:
## License ## License
This project is licensed under [BSD 2-Clause License](https://github.com/graphql-rust/juniper/blob/master/juniper_graphql_ws/LICENSE). This project is licensed under [BSD 2-Clause License](https://github.com/graphql-rust/juniper/blob/juniper_graphql_ws-v0.4.0/juniper_graphql_ws/LICENSE).

View file

@ -32,7 +32,7 @@ subscriptions = [
[dependencies] [dependencies]
futures = { version = "0.3.22", optional = true } futures = { version = "0.3.22", optional = true }
juniper = { version = "0.16.0", path = "../juniper", default-features = false } juniper = { version = "0.16.0", path = "../juniper", default-features = false }
juniper_graphql_ws = { version = "0.4.0-dev", path = "../juniper_graphql_ws", features = ["graphql-transport-ws", "graphql-ws"], optional = true } juniper_graphql_ws = { version = "0.4.0", path = "../juniper_graphql_ws", features = ["graphql-transport-ws", "graphql-ws"], optional = true }
log = { version = "0.4", optional = true } log = { version = "0.4", optional = true }
serde = { version = "1.0.122", features = ["derive"] } serde = { version = "1.0.122", features = ["derive"] }
serde_json = "1.0.18" serde_json = "1.0.18"