Release 1.14.2

async-graphql@1.14.2
async-graphql-derive@1.14.2
async-graphql-parser@1.14.2

Generated by cargo-workspaces
This commit is contained in:
Sunli 2020-05-28 15:02:23 +08:00
parent 18dacbdf17
commit 19ed9a08f8
3 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "async-graphql"
version = "1.14.1"
version = "1.14.2"
authors = ["sunli <scott_s829@163.com>"]
edition = "2018"
description = "A GraphQL server library implemented in Rust"
@ -17,7 +17,7 @@ readme = "README.md"
default = ["bson", "url", "chrono-tz"]
[dependencies]
async-graphql-parser = { path = "async-graphql-parser", version = "=1.13.4" }
async-graphql-parser = { path = "async-graphql-parser", version = "1.14.2" }
async-graphql-derive = { path = "async-graphql-derive", version = "1.14.0" }
anyhow = "1.0.26"
thiserror = "1.0.11"

View File

@ -1,6 +1,6 @@
[package]
name = "async-graphql-derive"
version = "1.14.0"
version = "1.14.2"
authors = ["sunli <scott_s829@163.com>"]
edition = "2018"
description = "Macros for async-graphql"
@ -16,7 +16,7 @@ categories = ["network-programming", "asynchronous"]
proc-macro = true
[dependencies]
async-graphql-parser = { path = "../async-graphql-parser", version = "=1.13.4" }
async-graphql-parser = { path = "../async-graphql-parser", version = "1.14.2" }
proc-macro2 = "1.0.6"
syn = { version = "1.0.20", features = ["full", "extra-traits"] }
quote = "1.0.3"

View File

@ -1,6 +1,6 @@
[package]
name = "async-graphql-parser"
version = "1.13.4"
version = "1.14.2"
authors = ["sunli <scott_s829@163.com>"]
edition = "2018"
description = "GraphQL query parser for async-graphql"