Skip to content

Commit 40c946c

Browse files
committed
0.9.2 release
* Changelogs * Update versions and dependency versions
1 parent 5670fc7 commit 40c946c

File tree

10 files changed

+35
-21
lines changed

10 files changed

+35
-21
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
target
22
Cargo.lock
3+
.idea

changelog/0.9.2.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# [0.9.2] 2018-01-13
2+
3+
## Changes
4+
5+
### `__typename` for unions
6+
7+
The [`__typename`](http://graphql.org/learn/queries/#meta-fields) query meta-field now works on unions.
8+
9+
[#112](https://github.com/graphql-rust/juniper/issues/112)
10+
11+
### Debug impls.
12+
13+
http::GraphQLRequest now implements `Debug`.

changelog/master.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
## [master]
1+
# [master] yyyy-mm-dd
22

33
## Changes
44

5-
### `__typename` for unions
6-
7-
The [`__typename`](http://graphql.org/learn/queries/#meta-fields) query meta-field now works on unions.
8-
9-
[#112](https://github.com/graphql-rust/juniper/issues/112)
5+
Add your changes below...

juniper/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "juniper"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
authors = [
55
"Magnus Hallin <mhallin@fastmail.com>",
66
"Christoph Herzog <chris@theduke.at>",
@@ -32,7 +32,7 @@ default = [
3232
]
3333

3434
[dependencies]
35-
juniper_codegen = { version = "0.9.1", path = "../juniper_codegen" }
35+
juniper_codegen = { version = "0.9.2", path = "../juniper_codegen" }
3636

3737
fnv = "1.0.3"
3838
ordermap = { version = "0.2.11", features = ["serde-1"] }

juniper_codegen/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_codegen"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
authors = [
55
"Magnus Hallin <mhallin@fastmail.com>",
66
"Christoph Herzog <chris@theduke.at>",

juniper_iron/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ repository = "https://github.com/graphql-rust/juniper"
1313
[dependencies]
1414
serde = { version = "1.0.2" }
1515
serde_json = { version = "1.0.2" }
16-
juniper = { version = "0.9.1", path = "../juniper" }
16+
juniper = { version = "0.9.2", path = "../juniper" }
1717

1818
urlencoded = { version = "0.5.0" }
1919
iron = "0.5.1"
@@ -25,6 +25,6 @@ mount = "^0.3.0"
2525
logger = "^0.3.0"
2626

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

juniper_rocket/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ repository = "https://github.com/graphql-rust/juniper"
1414
serde = { version = "1.0.2" }
1515
serde_derive = {version="1.0.2" }
1616
serde_json = { version = "1.0.2" }
17-
juniper = { version = "0.9.1" , path = "../juniper"}
17+
juniper = { version = "0.9.2" , path = "../juniper"}
1818

1919
rocket = { version = "0.3.6" }
2020
rocket_codegen = { version = "0.3.6" }
2121

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

juniper_rocket/changelog/v0.1.2.md renamed to juniper_rocket/changelog/0.1.2.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
# juniper_rocket 0.1.2
1+
# juniper_rocket [0.1.2] 2018-01-13
22

3-
## Rocket updated to `0.3.6`
3+
## Changes
4+
5+
### Rocket updated to `0.3.6`
46

57
[Rocket](https://rocket.rs) integration now requires Rocket `0.3.6` to
68
support building with recent Rust nightlies.
@@ -9,11 +11,10 @@ Additional information and supported nightly versions can be found in [Rocket's
911

1012
[#125](https://github.com/graphql-rust/juniper/issues/125)
1113

12-
## Decoding of query params
14+
### Decoding of query params
1315

14-
When processing GET requests, query parameters where not properly url_decoded,
16+
When processing GET requests, query parameters were not properly url_decoded,
1517

16-
This was fixed by [PR #128](https://github.com/graphql-rust/juniper/pull/128) by @LegNeato.
18+
This was fixed by [PR #122](https://github.com/graphql-rust/juniper/pull/128) by @LegNeato.
1719

1820
This fixed the [issue #116](https://github.com/graphql-rust/juniper/issues/116).
19-

juniper_rocket/changelog/master.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1-
# juniper_rocket master
1+
# juniper_rocket [master] yyyy-mm-dd
2+
3+
## Changes
24

35
Add your changes here...
6+

juniper_tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "juniper_tests"
33
version = "0.1.0"
44

55
[dependencies]
6-
juniper = { version = "0.9.1", path = "../juniper" }
6+
juniper = { version = "0.9.2", path = "../juniper" }
77
serde_json = { version = "1" }
88

99
[dev-dependencies]

0 commit comments

Comments
 (0)