Skip to content

Commit 6b82d1d

Browse files
Upgrade derive_more crate from 0.99.8 to 1.0 version (#1272)
- bump up MSRV to 1.75 Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kai Ren <[email protected]>
1 parent 256e6bc commit 6b82d1d

File tree

28 files changed

+119
-33
lines changed

28 files changed

+119
-33
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -144,13 +144,13 @@ jobs:
144144
strategy:
145145
fail-fast: false
146146
matrix:
147-
msrv: ["1.73.0"]
147+
msrv: ["1.75.0"]
148148
crate:
149149
- juniper_codegen
150150
- juniper
151151
- juniper_subscriptions
152152
- juniper_graphql_ws
153-
#- juniper_actix
153+
- juniper_actix
154154
- juniper_axum
155155
- juniper_hyper
156156
- juniper_rocket
@@ -159,10 +159,10 @@ jobs:
159159
- ubuntu
160160
- macOS
161161
- windows
162-
include:
163-
- { msrv: "1.75.0", crate: "juniper_actix", os: "ubuntu" }
164-
- { msrv: "1.75.0", crate: "juniper_actix", os: "macOS" }
165-
- { msrv: "1.75.0", crate: "juniper_actix", os: "windows" }
162+
#include:
163+
# - { msrv: "1.75.0", crate: "juniper_actix", os: "ubuntu" }
164+
# - { msrv: "1.75.0", crate: "juniper_actix", os: "macOS" }
165+
# - { msrv: "1.75.0", crate: "juniper_actix", os: "windows" }
166166
runs-on: ${{ matrix.os }}-latest
167167
steps:
168168
- uses: actions/checkout@v4

juniper/CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,21 @@ All user visible changes to `juniper` crate will be documented in this file. Thi
66

77

88

9-
## [0.17.0] · 2024-04-?? (unreleased)
10-
[0.17.0]: /../../tree/juniper-v0.17.0/juniper
9+
## master
1110

12-
[Diff](/../../compare/juniper-v0.16.1...juniper-v0.17.0) | [Milestone](/../../milestone/7)
11+
[Diff](/../../compare/juniper-v0.16.1...master) | [Milestone](/../../milestone/7)
1312

1413
### BC Breaks
1514

1615
- Upgraded [`chrono-tz` crate] integration to [0.9 version](https://github.com/chronotope/chrono-tz/releases/tag/v0.9.0). ([#1252])
16+
- Bumped up [MSRV] to 1.75. ([#1272])
1717

1818
### Changed
1919

2020
- Updated [GraphiQL] to [3.4.1 version](https://github.com/graphql/graphiql/blob/graphiql%403.4.1/packages/graphiql/CHANGELOG.md#341). ([#1273])
2121

2222
[#1252]: /../../pull/1252
23+
[#1272]: /../../pull/1272
2324
[#1273]: /../../pull/1273
2425

2526

@@ -227,6 +228,7 @@ See [old CHANGELOG](/../../blob/juniper-v0.15.12/juniper/CHANGELOG.md).
227228
[GraphiQL]: https://github.com/graphql/graphiql
228229
[GraphQL Playground]: https://github.com/prisma/graphql-playground
229230
[graphql-scalars.dev]: https://graphql-scalars.dev
231+
[MSRV]: https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field
230232
[October 2021]: https://spec.graphql.org/October2021
231233
[object safety]: https://doc.rust-lang.org/reference/items/traits.html#object-safety
232234
[orphan rules]: https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules

juniper/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "juniper"
33
version = "0.16.1"
44
edition = "2021"
5-
rust-version = "1.73"
5+
rust-version = "1.75"
66
description = "GraphQL server library."
77
license = "BSD-2-Clause"
88
authors = [

juniper/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Juniper (GraphQL server library for Rust)
44
[![Crates.io](https://img.shields.io/crates/v/juniper.svg?maxAge=2592000)](https://crates.io/crates/juniper)
55
[![Documentation](https://docs.rs/juniper/badge.svg)](https://docs.rs/juniper)
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)
7-
[![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)
7+
[![Rust 1.75+](https://img.shields.io/badge/rustc-1.75+-lightgray.svg "Rust 1.75+")](https://blog.rust-lang.org/2023/12/28/Rust-1.75.0.html)
88

99
- [Juniper Book] ([current][Juniper Book] | [edge][Juniper Book edge])
1010
- [Changelog](https://github.com/graphql-rust/juniper/blob/juniper-v0.16.1/juniper/CHANGELOG.md)

juniper_actix/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ See [old CHANGELOG](/../../blob/juniper_actix-v0.4.0/juniper_actix/CHANGELOG.md)
6060
[`actix-ws` crate]: https://docs.rs/actix-ws
6161
[`juniper` crate]: https://docs.rs/juniper
6262
[`juniper_graphql_ws` crate]: https://docs.rs/juniper_graphql_ws
63-
[Semantic Versioning 2.0.0]: https://semver.org
6463
[graphql-transport-ws]: https://github.com/enisdenjo/graphql-ws/blob/v5.14.0/PROTOCOL.md
6564
[graphql-ws]: https://github.com/apollographql/subscriptions-transport-ws/blob/v0.11.0/PROTOCOL.md
6665
[MSRV]: https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field
66+
[Semantic Versioning 2.0.0]: https://semver.org

juniper_actix/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Crates.io](https://img.shields.io/crates/v/juniper_actix.svg?maxAge=2592000)](https://crates.io/crates/juniper_actix)
55
[![Documentation](https://docs.rs/juniper_actix/badge.svg)](https://docs.rs/juniper_actix)
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)
7-
[![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)
7+
[![Rust 1.75+](https://img.shields.io/badge/rustc-1.75+-lightgray.svg "Rust 1.75+")](https://blog.rust-lang.org/2023/12/28/Rust-1.75.0.html)
88

99
- [Changelog](https://github.com/graphql-rust/juniper/blob/juniper_actix-v0.6.0/juniper_actix/CHANGELOG.md)
1010

juniper_axum/CHANGELOG.md

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

77

88

9+
## master
10+
11+
### BC Breaks
12+
13+
- Bumped up [MSRV] to 1.75. ([#1272])
14+
15+
[#1272]: /../../pull/1272
16+
17+
18+
19+
920
## [0.1.0] · 2024-03-20
1021
[0.1.0]: /../../tree/juniper_axum-v0.1.0/juniper_axum
1122

@@ -38,8 +49,9 @@ All user visible changes to `juniper_axum` crate will be documented in this file
3849
[`juniper` crate]: https://docs.rs/juniper
3950
[`juniper_graphql_ws` crate]: https://docs.rs/juniper_graphql_ws
4051
[GraphiQL]: https://github.com/graphql/graphiql
52+
[graphql-transport-ws]: https://github.com/enisdenjo/graphql-ws/blob/v5.14.0/PROTOCOL.md
53+
[graphql-ws]: https://github.com/apollographql/subscriptions-transport-ws/blob/v0.11.0/PROTOCOL.md
4154
[GraphQL]: http://graphql.org
4255
[GraphQL Playground]: https://github.com/prisma/graphql-playground
43-
[Semantic Versioning 2.0.0]: https://semver.org
44-
[graphql-transport-ws]: https://github.com/enisdenjo/graphql-ws/blob/v5.14.0/PROTOCOL.md
45-
[graphql-ws]: https://github.com/apollographql/subscriptions-transport-ws/blob/v0.11.0/PROTOCOL.md
56+
[MSRV]: https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field
57+
[Semantic Versioning 2.0.0]: https://semver.org

juniper_axum/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "juniper_axum"
33
version = "0.1.0"
44
edition = "2021"
5-
rust-version = "1.73"
5+
rust-version = "1.75"
66
description = "`juniper` GraphQL integration with `axum`."
77
license = "BSD-2-Clause"
88
authors = [

juniper_axum/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Crates.io](https://img.shields.io/crates/v/juniper_axum.svg?maxAge=2592000)](https://crates.io/crates/juniper_axum)
55
[![Documentation](https://docs.rs/juniper_axum/badge.svg)](https://docs.rs/juniper_axum)
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)
7-
[![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)
7+
[![Rust 1.75+](https://img.shields.io/badge/rustc-1.75+-lightgray.svg "Rust 1.75+")](https://blog.rust-lang.org/2023/12/28/Rust-1.75.0.html)
88

99
- [Changelog](https://github.com/graphql-rust/juniper/blob/juniper_axum-v0.1.0/juniper_axum/CHANGELOG.md)
1010

juniper_codegen/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ All user visible changes to `juniper_codegen` crate will be documented in this f
66

77

88

9+
## master
10+
11+
### BC Breaks
12+
13+
- Bumped up [MSRV] to 1.75. ([#1272])
14+
15+
[#1272]: /../../pull/1272
16+
17+
18+
19+
920
## [0.16.0] · 2024-03-20
1021
[0.16.0]: /../../tree/juniper_codegen-v0.16.0/juniper_codegen
1122

@@ -67,5 +78,6 @@ All user visible changes to `juniper_codegen` crate will be documented in this f
6778

6879

6980

81+
[MSRV]: https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field
7082
[orphan rules]: https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
7183
[Semantic Versioning 2.0.0]: https://semver.org

juniper_codegen/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "juniper_codegen"
33
version = "0.16.0"
44
edition = "2021"
5-
rust-version = "1.73"
5+
rust-version = "1.75"
66
description = "Code generation for `juniper` crate."
77
license = "BSD-2-Clause"
88
authors = [
@@ -28,7 +28,7 @@ syn = { version = "2.0", features = ["extra-traits", "full", "visit", "visit-mut
2828
url = "2.0"
2929

3030
[dev-dependencies]
31-
derive_more = "0.99.8"
31+
derive_more = { version = "1.0", features = ["from"] }
3232
futures = "0.3.22"
3333
juniper = { path = "../juniper" }
3434
serde = "1.0.122"

juniper_codegen/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Crates.io](https://img.shields.io/crates/v/juniper_codegen.svg?maxAge=2592000)](https://crates.io/crates/juniper_codegen)
55
[![Documentation](https://docs.rs/juniper_codegen/badge.svg)](https://docs.rs/juniper_codegen)
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)
7-
[![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)
7+
[![Rust 1.75+](https://img.shields.io/badge/rustc-1.75+-lightgray.svg "Rust 1.75+")](https://blog.rust-lang.org/2023/12/28/Rust-1.75.0.html)
88

99
- [Changelog](https://github.com/graphql-rust/juniper/blob/juniper_codegen-v0.16.0/juniper_codegen/CHANGELOG.md)
1010

juniper_graphql_ws/CHANGELOG.md

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

77

88

9+
## master
10+
11+
### BC Breaks
12+
13+
- Bumped up [MSRV] to 1.75. ([#1272])
14+
15+
[#1272]: /../../pull/1272
16+
17+
18+
19+
920
## [0.4.0] · 2024-03-20
1021
[0.4.0]: /../../tree/juniper_graphql_ws-v0.4.0/juniper_graphql_ws
1122

@@ -44,4 +55,5 @@ See [old CHANGELOG](/../../blob/juniper_graphql_ws-v0.3.0/juniper_graphql_ws/CHA
4455
[`graphql-ws` npm package]: https://npmjs.com/package/graphql-ws
4556
[`juniper` crate]: https://docs.rs/juniper
4657
[`juniper_subscriptions` crate]: https://docs.rs/juniper_subscriptions
58+
[MSRV]: https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field
4759
[Semantic Versioning 2.0.0]: https://semver.org

juniper_graphql_ws/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "juniper_graphql_ws"
33
version = "0.4.0"
44
edition = "2021"
5-
rust-version = "1.73"
5+
rust-version = "1.75"
66
description = "GraphQL over WebSocket Protocol implementations for `juniper` crate."
77
license = "BSD-2-Clause"
88
authors = [

juniper_graphql_ws/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Crates.io](https://img.shields.io/crates/v/juniper_graphql_ws.svg?maxAge=2592000)](https://crates.io/crates/juniper_graphql_ws)
55
[![Documentation](https://docs.rs/juniper_graphql_ws/badge.svg)](https://docs.rs/juniper_graphql_ws)
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)
7-
[![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)
7+
[![Rust 1.75+](https://img.shields.io/badge/rustc-1.75+-lightgray.svg "Rust 1.75+")](https://blog.rust-lang.org/2023/12/28/Rust-1.75.0.html)
88

99
- [Changelog](https://github.com/graphql-rust/juniper/blob/juniper_graphql_ws-v0.4.0/juniper_graphql_ws/CHANGELOG.md)
1010

juniper_hyper/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ All user visible changes to `juniper_hyper` crate will be documented in this fil
66

77

88

9+
## master
10+
11+
### BC Breaks
12+
13+
- Bumped up [MSRV] to 1.75. ([#1272])
14+
15+
[#1272]: /../../pull/1272
16+
17+
18+
19+
920
## [0.9.0] · 2024-03-20
1021
[0.9.0]: /../../tree/juniper_hyper-v0.9.0/juniper_hyper
1122

@@ -31,4 +42,5 @@ See [old CHANGELOG](/../../blob/juniper_hyper-v0.8.0/juniper_hyper/CHANGELOG.md)
3142

3243
[`juniper` crate]: https://docs.rs/juniper
3344
[`hyper` crate]: https://docs.rs/hyper
45+
[MSRV]: https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field
3446
[Semantic Versioning 2.0.0]: https://semver.org

juniper_hyper/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "juniper_hyper"
33
version = "0.9.0"
44
edition = "2021"
5-
rust-version = "1.73"
5+
rust-version = "1.75"
66
description = "`juniper` GraphQL integration with `hyper`."
77
license = "BSD-2-Clause"
88
authors = [

juniper_hyper/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Crates.io](https://img.shields.io/crates/v/juniper_hyper.svg?maxAge=2592000)](https://crates.io/crates/juniper_hyper)
55
[![Documentation](https://docs.rs/juniper_hyper/badge.svg)](https://docs.rs/juniper_hyper)
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)
7-
[![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)
7+
[![Rust 1.75+](https://img.shields.io/badge/rustc-1.75+-lightgray.svg "Rust 1.75+")](https://blog.rust-lang.org/2023/12/28/Rust-1.75.0.html)
88

99
- [Changelog](https://github.com/graphql-rust/juniper/blob/juniper_hyper-v0.9.0/juniper_hyper/CHANGELOG.md)
1010

juniper_rocket/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ All user visible changes to `juniper_rocket` crate will be documented in this fi
66

77

88

9+
## master
10+
11+
### BC Breaks
12+
13+
- Bumped up [MSRV] to 1.75. ([#1272])
14+
15+
[#1272]: /../../pull/1272
16+
17+
18+
19+
920
## [0.9.0] · 2024-03-20
1021
[0.9.0]: /../../tree/juniper_rocket-v0.9.0/juniper_rocket
1122

@@ -40,4 +51,5 @@ See [old CHANGELOG](/../../blob/juniper_rocket-v0.8.2/juniper_rocket/CHANGELOG.m
4051

4152
[`juniper` crate]: https://docs.rs/juniper
4253
[`rocket` crate]: https://docs.rs/rocket
54+
[MSRV]: https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field
4355
[Semantic Versioning 2.0.0]: https://semver.org

juniper_rocket/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "juniper_rocket"
33
version = "0.9.0"
44
edition = "2021"
5-
rust-version = "1.73"
5+
rust-version = "1.75"
66
description = "`juniper` GraphQL integration with `rocket`."
77
license = "BSD-2-Clause"
88
authors = [

juniper_rocket/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Crates.io](https://img.shields.io/crates/v/juniper_rocket.svg?maxAge=2592000)](https://crates.io/crates/juniper_rocket)
55
[![Documentation](https://docs.rs/juniper_rocket/badge.svg)](https://docs.rs/juniper_rocket)
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)
7-
[![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)
7+
[![Rust 1.75+](https://img.shields.io/badge/rustc-1.75+-lightgray.svg "Rust 1.75+")](https://blog.rust-lang.org/2023/12/28/Rust-1.75.0.html)
88

99
- [Changelog](https://github.com/graphql-rust/juniper/blob/juniper_rocket-v0.9.0/juniper_rocket/CHANGELOG.md)
1010

juniper_subscriptions/CHANGELOG.md

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

77

88

9+
## master
10+
11+
### BC Breaks
12+
13+
- Bumped up [MSRV] to 1.75. ([#1272])
14+
15+
[#1272]: /../../pull/1272
16+
17+
18+
19+
920
## [0.17.0] · 2024-03-20
1021
[0.17.0]: /../../tree/juniper_subscriptions-v0.17.0/juniper_subscriptions
1122

@@ -24,4 +35,5 @@ See [old CHANGELOG](/../../blob/juniper_subscriptions-v0.16.0/juniper_subscripti
2435

2536

2637
[`juniper` crate]: https://docs.rs/juniper
38+
[MSRV]: https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field
2739
[Semantic Versioning 2.0.0]: https://semver.org

juniper_subscriptions/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "juniper_subscriptions"
33
version = "0.17.0"
44
edition = "2021"
5-
rust-version = "1.73"
5+
rust-version = "1.75"
66
description = "Juniper `SubscriptionCoordinator` and `SubscriptionConnection` implementations."
77
license = "BSD-2-Clause"
88
authors = ["nWacky <[email protected]>"]

juniper_subscriptions/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Crates.io](https://img.shields.io/crates/v/juniper_subscriptions.svg?maxAge=2592000)](https://crates.io/crates/juniper_subscriptions)
55
[![Documentation](https://docs.rs/juniper_subscriptions/badge.svg)](https://docs.rs/juniper_subscriptions)
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)
7-
[![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)
7+
[![Rust 1.75+](https://img.shields.io/badge/rustc-1.75+-lightgray.svg "Rust 1.75+")](https://blog.rust-lang.org/2023/12/28/Rust-1.75.0.html)
88

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

juniper_warp/CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ All user visible changes to `juniper_warp` crate will be documented in this file
66

77

88

9+
## master
10+
11+
### BC Breaks
12+
13+
- Bumped up [MSRV] to 1.75. ([#1272])
14+
15+
[#1272]: /../../pull/1272
16+
17+
18+
19+
920
## [0.8.0] · 2024-03-20
1021
[0.8.0]: /../../tree/juniper_warp-v0.8.0/juniper_warp
1122

@@ -46,6 +57,7 @@ See [old CHANGELOG](/../../blob/juniper_warp-v0.7.0/juniper_warp/CHANGELOG.md).
4657

4758

4859
[`juniper` crate]: https://docs.rs/juniper
49-
[Semantic Versioning 2.0.0]: https://semver.org
5060
[graphql-transport-ws]: https://github.com/enisdenjo/graphql-ws/blob/v5.14.0/PROTOCOL.md
5161
[graphql-ws]: https://github.com/apollographql/subscriptions-transport-ws/blob/v0.11.0/PROTOCOL.md
62+
[MSRV]: https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field
63+
[Semantic Versioning 2.0.0]: https://semver.org

0 commit comments

Comments
 (0)