Skip to content

Commit dbbceae

Browse files
committed
Release juniper 0.14.0
1 parent c4d7661 commit dbbceae

File tree

8 files changed

+15
-11
lines changed

8 files changed

+15
-11
lines changed

juniper/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# master
22

3+
- No changes yet
4+
5+
# [[0.14.0] 2019-09-29](https://github.com/graphql-rust/juniper/releases/tag/juniper-0.14.0)
6+
37
- Require `url` 2.x if `url` feature is enabled.
48
- Improve lookahead visitability.
59
- Add ability to parse 'subscription'.

juniper/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "juniper"
3-
version = "0.13.1"
3+
version = "0.14.0"
44
authors = [
55
"Magnus Hallin <mhallin@fastmail.com>",
66
"Christoph Herzog <chris@theduke.at>",

juniper/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Juniper has not reached 1.0 yet, thus some API instability should be expected.
8888
[chrono]: https://crates.io/crates/chrono
8989
9090
*/
91-
#![doc(html_root_url = "https://docs.rs/juniper/0.13.1")]
91+
#![doc(html_root_url = "https://docs.rs/juniper/0.14.0")]
9292
#![warn(missing_docs)]
9393

9494
#[doc(hidden)]

juniper_codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ syn = { version = "1.0.3", features = ["full", "extra-traits", "parsing"] }
2020
quote = "1.0.2"
2121

2222
[dev-dependencies]
23-
juniper = { version = "0.13.1", path = "../juniper" }
23+
juniper = { version = "0.14.0", path = "../juniper" }
2424

2525
[badges]
2626
travis-ci = { repository = "graphql-rust/juniper" }

juniper_hyper/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ serde = "1.0"
1313
serde_json = "1.0"
1414
serde_derive = "1.0"
1515
url = "2"
16-
juniper = { version = "0.13.1" , default-features = false, path = "../juniper"}
16+
juniper = { version = "0.14.0", default-features = false, path = "../juniper"}
1717

1818
futures = "0.1"
1919
tokio = "0.1.8"
@@ -25,6 +25,6 @@ pretty_env_logger = "0.2"
2525
reqwest = "0.9"
2626

2727
[dev-dependencies.juniper]
28-
version = "0.13.1"
28+
version = "0.14.0"
2929
features = ["expose-test-schema", "serde_json"]
3030
path = "../juniper"

juniper_iron/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ edition = "2018"
1515
serde = { version = "1.0.2" }
1616
serde_json = { version = "1.0.2" }
1717
serde_derive = { version = "1.0.2" }
18-
juniper = { version = "0.13.1", path = "../juniper" }
18+
juniper = { version = "0.14.0", path = "../juniper" }
1919

2020
urlencoded = { version = ">= 0.5, < 0.7" }
2121
iron = ">= 0.5, < 0.7"
@@ -29,6 +29,6 @@ url = "2"
2929
percent-encoding = "2"
3030

3131
[dev-dependencies.juniper]
32-
version = "0.13.1"
32+
version = "0.14.0"
3333
features = ["expose-test-schema", "serde_json"]
3434
path = "../juniper"

juniper_rocket/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ edition = "2018"
1515
serde = { version = "1.0.2" }
1616
serde_json = { version = "1.0.2" }
1717
serde_derive = { version = "1.0.2" }
18-
juniper = { version = "0.13.1" , default-features = false, path = "../juniper"}
18+
juniper = { version = "0.14.0", default-features = false, path = "../juniper"}
1919

2020
rocket = { version = "0.4.0" }
2121

2222
[dev-dependencies.juniper]
23-
version = "0.13.1"
23+
version = "0.14.0"
2424
features = ["expose-test-schema", "serde_json"]
2525
path = "../juniper"

juniper_warp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ edition = "2018"
1010

1111
[dependencies]
1212
warp = "0.1.8"
13-
juniper = { version = "0.13.1", path = "../juniper", default-features = false }
13+
juniper = { version = "0.14.0", path = "../juniper", default-features = false }
1414
serde_json = "1.0.24"
1515
serde_derive = "1.0.75"
1616
failure = "0.1.2"
@@ -19,7 +19,7 @@ serde = "1.0.75"
1919
tokio-threadpool = "0.1.7"
2020

2121
[dev-dependencies]
22-
juniper = { version = "0.13.1", path = "../juniper", features = ["expose-test-schema", "serde_json"] }
22+
juniper = { version = "0.14.0", path = "../juniper", features = ["expose-test-schema", "serde_json"] }
2323
env_logger = "0.5.11"
2424
log = "0.4.3"
2525
percent-encoding = "1.0"

0 commit comments

Comments
 (0)