Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitdba4342

Browse files
committed
v7.0.17
1 parenteada3b9 commitdba4342

File tree

11 files changed

+15
-15
lines changed

11 files changed

+15
-15
lines changed

‎CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on[Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
#[Unreleased]
7+
#[7.0.17] 2025-05-24
88

99
- update MSRV to`1.86.0`
1010
- Allow exporting SDL with spaces[#1688](https://github.com/async-graphql/async-graphql/pull/1688)

‎Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
1111
name ="async-graphql"
1212
readme ="README.md"
1313
repository ="https://github.com/async-graphql/async-graphql"
14-
version ="7.0.16"
14+
version ="7.0.17"
1515

1616
[features]
1717
apollo_persisted_queries = ["lru","sha2"]
@@ -147,10 +147,10 @@ members = [
147147
]
148148

149149
[workspace.dependencies]
150-
async-graphql = {path =".",version ="7.0.16",default-features =false }
151-
async-graphql-derive = {path ="derive",version ="7.0.16" }
152-
async-graphql-parser = {path ="parser",version ="7.0.16" }
153-
async-graphql-value = {path ="value",version ="7.0.16" }
150+
async-graphql = {path =".",version ="7.0.17",default-features =false }
151+
async-graphql-derive = {path ="derive",version ="7.0.17" }
152+
async-graphql-parser = {path ="parser",version ="7.0.17" }
153+
async-graphql-value = {path ="value",version ="7.0.17" }
154154

155155
serde = {version ="1.0.197",features = ["derive"] }
156156
serde_json ="1.0.115"

‎derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql"]
99
license ="MIT OR Apache-2.0"
1010
name ="async-graphql-derive"
1111
repository ="https://github.com/async-graphql/async-graphql"
12-
version ="7.0.16"
12+
version ="7.0.17"
1313

1414
[lib]
1515
proc-macro =true

‎integrations/actix-web/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql"]
99
license ="MIT OR Apache-2.0"
1010
name ="async-graphql-actix-web"
1111
repository ="https://github.com/async-graphql/async-graphql"
12-
version ="7.0.16"
12+
version ="7.0.17"
1313

1414
[dependencies]
1515
async-graphql.workspace =true

‎integrations/axum/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql", "axum"]
99
license ="MIT OR Apache-2.0"
1010
name ="async-graphql-axum"
1111
repository ="https://github.com/async-graphql/async-graphql"
12-
version ="7.0.16"
12+
version ="7.0.17"
1313

1414
[dependencies]
1515
async-graphql.workspace =true

‎integrations/poem/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql", "poem"]
99
license ="MIT OR Apache-2.0"
1010
name ="async-graphql-poem"
1111
repository ="https://github.com/async-graphql/async-graphql"
12-
version ="7.0.16"
12+
version ="7.0.17"
1313

1414
[dependencies]
1515
async-graphql.workspace =true

‎integrations/rocket/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql", "rocket"]
99
license ="MIT OR Apache-2.0"
1010
name ="async-graphql-rocket"
1111
repository ="https://github.com/async-graphql/async-graphql"
12-
version ="7.0.16"
12+
version ="7.0.17"
1313

1414
[dependencies]
1515
async-graphql.workspace =true

‎integrations/tide/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql"]
99
license ="MIT OR Apache-2.0"
1010
name ="async-graphql-tide"
1111
repository ="https://github.com/async-graphql/async-graphql"
12-
version ="7.0.16"
12+
version ="7.0.17"
1313

1414
[features]
1515
default = ["websocket"]

‎integrations/warp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql"]
99
license ="MIT OR Apache-2.0"
1010
name ="async-graphql-warp"
1111
repository ="https://github.com/async-graphql/async-graphql"
12-
version ="7.0.16"
12+
version ="7.0.17"
1313

1414
[dependencies]
1515
async-graphql.workspace =true

‎parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql"]
99
license ="MIT OR Apache-2.0"
1010
name ="async-graphql-parser"
1111
repository ="https://github.com/async-graphql/async-graphql"
12-
version ="7.0.16"
12+
version ="7.0.17"
1313

1414
[dependencies]
1515
async-graphql-value.workspace =true

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp