Skip to content

Commit 987aa40

Browse files
committed
Prepare for 0.6.2 release
1 parent 40cc76d commit 987aa40

File tree

3 files changed

+32
-5
lines changed

3 files changed

+32
-5
lines changed

CHANGELOG.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,33 @@
11
Change log
22
==========
33

4+
## [0.6.2] – 2017-02-05
5+
6+
### New features
7+
8+
* The ``null`` literal is now supported in the GraphQL language. (#26)
9+
* Rustc-serialize is now optional, but enabled by default. If you
10+
_only_ want Serde support, include Juniper without default features
11+
and enable Serde. (#12)
12+
* The built-in ``ID`` type now has a public constructor and derives a
13+
few traits (``Clone``, ``Debug``, ``Eq``, ``PartialEq``,
14+
``From<String>``, ``Deref<Target=str>``). (#19)
15+
* Juniper is now built and tested against all Rust compilers since
16+
version 1.12.1.
17+
18+
### Minor breaking change
19+
20+
* Serde has been updated to 0.9. (#25)
21+
22+
### Bugfixes
23+
24+
* The built-in GraphiQL handler had a bug in variable serialization.
25+
(#16)
26+
* The example should now build and run without problems on
27+
Windows. (#15)
28+
* Object types now properly implement ``__typename``. (#22)
29+
* String variables are now properly parsed into GraphQL enums. (#17)
30+
431
## [0.6.1] – 2017-01-06
532

633
### New features
@@ -236,7 +263,7 @@ using the macros and not deriving `GraphQLType` directly.
236263
* Macro syntax stability has also been improved. All syntactical edge
237264
cases of the macros have gotten tests to verify their correctness.
238265

239-
266+
[0.6.2]: https://github.com/mhallin/juniper/compare/0.6.1...0.6.2
240267
[0.6.1]: https://github.com/mhallin/juniper/compare/0.6.0...0.6.1
241268
[0.6.0]: https://github.com/mhallin/juniper/compare/0.5.3...0.6.0
242269
[0.5.3]: https://github.com/mhallin/juniper/compare/0.5.2...0.5.3

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.6.1"
3+
version = "0.6.2"
44
authors = ["Magnus Hallin <[email protected]>"]
55
description = "GraphQL server library"
66
license = "BSD-2-Clause"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ Add Juniper to your Cargo.toml:
2424

2525
```toml
2626
[dependencies]
27-
juniper = "0.6.1"
27+
juniper = "0.6.2"
2828
```
2929

3030
If you want the Iron integration enabled, you need to enable the `iron-handlers`
3131
feature flag:
3232

3333
```toml
3434
[dependencies]
35-
juniper = { version = "0.6.1", features = ["iron-handlers"] }
35+
juniper = { version = "0.6.2", features = ["iron-handlers"] }
3636
```
3737

3838
## Building schemas
@@ -120,7 +120,7 @@ Juniper has not reached 1.0 yet, thus some API instability should be expected.
120120

121121
## 1.0 Roadmap
122122

123-
> Version 0.6.1 will probably be re-released as 1.0 to indicate API stability.
123+
> Version 0.6.2 will probably be re-released as 1.0 to indicate API stability.
124124
125125
The road to 1.0 _focuses_ on two aspects: making sure the API hasn't got any
126126
obvious dead-ends with respect to probable future features, and improving test

0 commit comments

Comments
 (0)