Bump to 0.9.1 and fix up Cargo.toml files

This commit is contained in:
theduke 2017-12-03 18:33:40 +01:00
parent 0f916f4aa6
commit ca9d5c1c1a
5 changed files with 26 additions and 23 deletions

View file

@ -1,7 +1,10 @@
[package]
name = "juniper"
version = "0.9.0"
authors = ["Magnus Hallin <mhallin@fastmail.com>"]
version = "0.9.1"
authors = [
"Magnus Hallin <mhallin@fastmail.com>",
"Christoph Herzog <chris@theduke.at>",
]
description = "GraphQL server library"
license = "BSD-2-Clause"
documentation = "https://docs.rs/juniper"
@ -29,7 +32,7 @@ default = [
]
[dependencies]
juniper_codegen = { version = "0.9.0", path = "../juniper_codegen" }
juniper_codegen = { version = "0.9.1", path = "../juniper_codegen" }
fnv = "1.0.3"
ordermap = { version = "0.2.11", features = ["serde-1"] }

View file

@ -1,7 +1,10 @@
[package]
name = "juniper_codegen"
version = "0.9.0"
authors = ["Magnus Hallin <mhallin@fastmail.com>"]
version = "0.9.1"
authors = [
"Magnus Hallin <mhallin@fastmail.com>",
"Christoph Herzog <chris@theduke.at>",
]
description = "Internal custom derive trait for Juniper GraphQL"
license = "BSD-2-Clause"
documentation = "https://docs.rs/juniper"

View file

@ -1,7 +1,10 @@
[package]
name = "juniper_iron"
version = "0.1.0"
authors = ["Magnus Hallin <mhallin@fastmail.com>"]
version = "0.1.1"
authors = [
"Magnus Hallin <mhallin@fastmail.com>",
"Christoph Herzog <chris@theduke.at>",
]
description = "Iron integration for juniper"
license = "BSD-2-Clause"
documentation = "https://docs.rs/juniper_iron"
@ -10,7 +13,7 @@ repository = "https://github.com/graphql-rust/juniper"
[dependencies]
serde = { version = "1.0.2" }
serde_json = { version = "1.0.2" }
juniper = { version = "0.9.0", path = "../juniper" }
juniper = { version = "0.9.1", path = "../juniper" }
urlencoded = { version = "0.5.0" }
iron = "0.5.1"
@ -22,10 +25,6 @@ mount = "^0.3.0"
logger = "^0.3.0"
[dev-dependencies.juniper]
version = "0.9.0"
version = "0.9.1"
features = ["expose-test-schema", "serde_json"]
path = "../juniper"
[badges]
travis-ci = { repository = "graphql-rust/juniper_iron" }
appveyor = { repository = "graphql-rust/juniper_iron" }

View file

@ -1,7 +1,10 @@
[package]
name = "juniper_rocket"
version = "0.1.0"
authors = ["Magnus Hallin <mhallin@fastmail.com>"]
version = "0.1.1"
authors = [
"Magnus Hallin <mhallin@fastmail.com>",
"Christoph Herzog <chris@theduke.at>",
]
description = "Juniper GraphQL integration with Rocket"
license = "BSD-2-Clause"
documentation = "https://docs.rs/juniper_rocket"
@ -11,17 +14,12 @@ repository = "https://github.com/graphql-rust/juniper"
serde = { version = "1.0.2" }
serde_derive = {version="1.0.2" }
serde_json = { version = "1.0.2" }
juniper = { version = "0.9.0" , path = "../juniper"}
juniper = { version = "0.9.1" , path = "../juniper"}
rocket = { version = "0.3.0" }
rocket_codegen = { version = "0.3.0" }
[badges]
travis-ci = { repository = "mhallin/juniper" }
appveyor = { repository = "mhallin/juniper" }
[dev-dependencies.juniper]
version = "0.9.0"
version = "0.9.1"
features = ["expose-test-schema", "serde_json"]
path = "../juniper"

View file

@ -3,7 +3,7 @@ name = "juniper_tests"
version = "0.1.0"
[dependencies]
juniper = { version = "0.9.0", path = "../juniper" }
juniper = { version = "0.9.1", path = "../juniper" }
serde_json = { version = "1" }
[dev-dependencies]