Skip to content

Commit 8620eb1

Browse files
committed
Prepare for 0.6.1 release
1 parent 1af9504 commit 8620eb1

File tree

3 files changed

+28
-5
lines changed

3 files changed

+28
-5
lines changed

CHANGELOG.md

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

4-
## 0.6.0 – Unreleased
4+
## [0.6.1] – 2017-01-06
5+
6+
### New features
7+
8+
* Optional Serde support (#8)
9+
10+
### Improvements
11+
12+
* The `graphql_input_object!` macro can now be used to define input
13+
objects as public Rust structs.
14+
* GraphiQL in the Iron GraphiQL handler has been updated to 0.8.1
15+
(#11)
16+
17+
### Minor breaking changes
18+
19+
Some undocumented but public APIs were changed.
20+
21+
* `to_snake_case` correctly renamed to `to_camel_case` (#9)
22+
* JSON serialization of `GraphQLError` changed to be more consistent
23+
with how other values were serialized (#10).
24+
25+
## [0.6.0] – 2017-01-02
526

627
TL;DR: Many big changes in how context types work and how they
728
interact with the executor. Not too much to worry about if you're only
@@ -216,4 +237,6 @@ using the macros and not deriving `GraphQLType` directly.
216237
cases of the macros have gotten tests to verify their correctness.
217238

218239

240+
[0.6.1]: https://github.com/mhallin/juniper/compare/0.6.0...0.6.1
241+
[0.6.0]: https://github.com/mhallin/juniper/compare/0.5.3...0.6.0
219242
[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.0"
3+
version = "0.6.1"
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.0"
27+
juniper = "0.6.1"
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.0", features = ["iron-handlers"] }
35+
juniper = { version = "0.6.1", 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.0 will probably be re-released as 1.0 to indicate API stability.
123+
> Version 0.6.1 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)