Skip to content

Commit 731a1b0

Browse files
committed
Prepare 0.4.0 release of juniper_graphql_ws crate (#1198)
1 parent 9bb3352 commit 731a1b0

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

juniper_actix/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ actix-ws = { version = "0.2", optional = true }
3131
anyhow = "1.0.47"
3232
futures = "0.3.22"
3333
juniper = { version = "0.16.0", path = "../juniper", default-features = false }
34-
juniper_graphql_ws = { version = "0.4.0-dev", path = "../juniper_graphql_ws", features = ["graphql-transport-ws", "graphql-ws"], optional = true }
34+
juniper_graphql_ws = { version = "0.4.0", path = "../juniper_graphql_ws", features = ["graphql-transport-ws", "graphql-ws"], optional = true }
3535
serde = { version = "1.0.122", features = ["derive"] }
3636
serde_json = "1.0.18"
3737

juniper_axum/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ subscriptions = ["axum/ws", "juniper_graphql_ws/graphql-ws", "dep:futures"]
2828
axum = "0.7"
2929
futures = { version = "0.3.22", optional = true }
3030
juniper = { version = "0.16.0", path = "../juniper", default-features = false }
31-
juniper_graphql_ws = { version = "0.4.0-dev", path = "../juniper_graphql_ws", features = ["graphql-transport-ws"] }
31+
juniper_graphql_ws = { version = "0.4.0", path = "../juniper_graphql_ws", features = ["graphql-transport-ws"] }
3232
serde = { version = "1.0.122", features = ["derive"] }
3333
serde_json = "1.0.18"
3434

juniper_graphql_ws/CHANGELOG.md

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

77

88

9-
## master
9+
## [0.4.0] · 2024-03-20
10+
[0.4.0]: /../../tree/juniper_graphql_ws-v0.4.0/juniper_graphql_ws
1011

1112
### BC Breaks
1213

juniper_graphql_ws/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "juniper_graphql_ws"
3-
version = "0.4.0-dev"
3+
version = "0.4.0"
44
edition = "2021"
55
rust-version = "1.73"
66
description = "GraphQL over WebSocket Protocol implementations for `juniper` crate."

juniper_graphql_ws/README.md

+2-2
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_graphql_ws/CHANGELOG.md)
9+
- [Changelog](https://github.com/graphql-rust/juniper/blob/juniper_graphql_ws-v0.4.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/master/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.4.0/juniper_graphql_ws/LICENSE).
2323

2424

2525

juniper_warp/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ subscriptions = [
3232
[dependencies]
3333
futures = { version = "0.3.22", optional = true }
3434
juniper = { version = "0.16.0", path = "../juniper", default-features = false }
35-
juniper_graphql_ws = { version = "0.4.0-dev", path = "../juniper_graphql_ws", features = ["graphql-transport-ws", "graphql-ws"], optional = true }
35+
juniper_graphql_ws = { version = "0.4.0", path = "../juniper_graphql_ws", features = ["graphql-transport-ws", "graphql-ws"], optional = true }
3636
log = { version = "0.4", optional = true }
3737
serde = { version = "1.0.122", features = ["derive"] }
3838
serde_json = "1.0.18"

0 commit comments

Comments
 (0)