Skip to content

Commit eca20cd

Browse files
committed
Prepare for 0.7.0 release
1 parent b7a2f57 commit eca20cd

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

CHANGELOG.md

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

4+
## [0.7.0] – 2017-02-26
5+
6+
### Breaking changes
7+
8+
* The `iron-handlers` feature now depends on Iron 0.5
9+
([#30](https://github.com/mhallin/juniper/pull/30)). Because of
10+
this, support for Rust 1.12 has been dropped. It might still work if
11+
you're not using the Iron integrations feature, however.
12+
13+
### New features
14+
15+
* Input objects defined by the `graphql_input_object!` can now be used
16+
as default values to field arguments and other input object fields.
17+
18+
419
## [0.6.3] – 2017-02-19
520

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

296+
[0.6.3]: https://github.com/mhallin/juniper/compare/0.6.3...0.7.0
281297
[0.6.3]: https://github.com/mhallin/juniper/compare/0.6.2...0.6.3
282298
[0.6.2]: https://github.com/mhallin/juniper/compare/0.6.1...0.6.2
283299
[0.6.1]: https://github.com/mhallin/juniper/compare/0.6.0...0.6.1

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.3"
3+
version = "0.7.0"
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.3"
27+
juniper = "0.7.0"
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.3", features = ["iron-handlers"] }
35+
juniper = { version = "0.7.0", 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.3 will probably be re-released as 1.0 to indicate API stability.
123+
> Version 0.7.0 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)