Skip to content

Commit a3004c8

Browse files
committed
Prepare 0.5.0 release of juniper_graphql_ws crate
1 parent c7406d0 commit a3004c8

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
lines changed

juniper_actix/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ actix-ws = { version = "0.3", optional = true }
3535
derive_more = { version = "2.0", features = ["display", "error"], optional = true }
3636
futures = { version = "0.3.22", optional = true }
3737
juniper = { version = "0.17", path = "../juniper", default-features = false }
38-
juniper_graphql_ws = { version = "0.4.0", path = "../juniper_graphql_ws", features = ["graphql-transport-ws", "graphql-ws"], optional = true }
38+
juniper_graphql_ws = { version = "0.5", path = "../juniper_graphql_ws", features = ["graphql-transport-ws", "graphql-ws"], optional = true }
3939
serde = { version = "1.0.122", features = ["derive"] }
4040
serde_json = "1.0.18"
4141

juniper_axum/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ axum = { version = "0.8", features = ["json", "query"], default-features = false
3434
derive_more = { version = "2.0", features = ["display", "error"], optional = true }
3535
futures = { version = "0.3.22", optional = true }
3636
juniper = { version = "0.17.0", path = "../juniper", default-features = false }
37-
juniper_graphql_ws = { version = "0.4.0", path = "../juniper_graphql_ws", features = ["graphql-transport-ws"] }
37+
juniper_graphql_ws = { version = "0.5", path = "../juniper_graphql_ws", features = ["graphql-transport-ws"] }
3838
serde = { version = "1.0.122", features = ["derive"] }
3939
serde_json = "1.0.18"
4040

juniper_graphql_ws/CHANGELOG.md

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

77

88

9-
## master
9+
## [0.5.0] · 2025-09-08
10+
[0.5.0]: /../../tree/juniper_graphql_ws-v0.5.0/juniper_graphql_ws
1011

1112
### BC Breaks
1213

13-
- Bumped up [MSRV] to 1.85. ([#1272], [todo])
14+
- Switched to 0.17 version of [`juniper` crate].
15+
- Switched to 0.18 version of [`juniper_subscriptions` crate].
16+
- Bumped up [MSRV] to 1.85. ([#1272], [1b1fc618])
1417

1518
[#1272]: /../../pull/1272
16-
[todo]: /../../commit/todo
19+
[1b1fc618]: /../../commit/1b1fc61879ffdd640d741e187dc20678bf7ab295
1720

1821

1922

juniper_graphql_ws/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_graphql_ws"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2024"
55
rust-version = "1.85"
66
description = "GraphQL over WebSocket Protocol implementations for `juniper` crate."

juniper_graphql_ws/README.md

Lines changed: 2 additions & 2 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_graphql_ws-v0.4.0/juniper_graphql_ws/CHANGELOG.md)
9+
- [Changelog](https://github.com/graphql-rust/juniper/blob/juniper_graphql_ws-v0.5.0/juniper_graphql_ws/CHANGELOG.md)
1010

1111
This crate contains implementations of 2 protocols:
1212

@@ -19,7 +19,7 @@ This crate contains implementations of 2 protocols:
1919

2020
## License
2121

22-
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).
22+
This project is licensed under [BSD 2-Clause License](https://github.com/graphql-rust/juniper/blob/juniper_graphql_ws-v0.5.0/juniper_graphql_ws/LICENSE).
2323

2424

2525

juniper_warp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ subscriptions = [
3434
derive_more = { version = "2.0", features = ["display", "error"] }
3535
futures = { version = "0.3.22", optional = true }
3636
juniper = { version = "0.17", path = "../juniper", default-features = false }
37-
juniper_graphql_ws = { version = "0.4.0", path = "../juniper_graphql_ws", features = ["graphql-transport-ws", "graphql-ws"], optional = true }
37+
juniper_graphql_ws = { version = "0.5", path = "../juniper_graphql_ws", features = ["graphql-transport-ws", "graphql-ws"], optional = true }
3838
log = { version = "0.4", optional = true }
3939
serde_json = "1.0.18"
4040
tokio = { version = "1.0", features = ["rt"] }

0 commit comments

Comments
 (0)