Skip to content

Commit 9d520d7

Browse files
committed
Prepare for 0.6.3 release
1 parent 2f79f33 commit 9d520d7

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Change log
22
==========
33

4+
## [0.6.3] – 2017-02-19
5+
6+
### New features
7+
8+
* Add support for default values on input object fields
9+
([#28](https://github.com/mhallin/juniper/issues/28))
10+
411
## [0.6.2] – 2017-02-05
512

613
### New features
@@ -271,6 +278,7 @@ using the macros and not deriving `GraphQLType` directly.
271278
* Macro syntax stability has also been improved. All syntactical edge
272279
cases of the macros have gotten tests to verify their correctness.
273280

281+
[0.6.3]: https://github.com/mhallin/juniper/compare/0.6.2...0.6.3
274282
[0.6.2]: https://github.com/mhallin/juniper/compare/0.6.1...0.6.2
275283
[0.6.1]: https://github.com/mhallin/juniper/compare/0.6.0...0.6.1
276284
[0.6.0]: https://github.com/mhallin/juniper/compare/0.5.3...0.6.0

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.2"
3+
version = "0.6.3"
44
authors = ["Magnus Hallin <mhallin@fastmail.com>"]
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.2"
27+
juniper = "0.6.3"
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.2", features = ["iron-handlers"] }
35+
juniper = { version = "0.6.3", 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.2 will probably be re-released as 1.0 to indicate API stability.
123+
> Version 0.6.3 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)