@@ -24,23 +24,23 @@ Add Juniper to your Cargo.toml:
24
24
25
25
``` toml
26
26
[dependencies ]
27
- juniper = " 0.8.0 "
27
+ juniper = " 0.8.1 "
28
28
```
29
29
30
30
If you want the Iron integration enabled, you need to enable the ` iron-handlers `
31
31
feature flag:
32
32
33
33
``` toml
34
34
[dependencies ]
35
- juniper = { version = " 0.8.0 " , features = [" iron-handlers" ] }
35
+ juniper = { version = " 0.8.1 " , features = [" iron-handlers" ] }
36
36
```
37
37
38
38
If you want the Rocket integration enabled, you need to use the nightly Rust
39
39
compiler and enable the ` rocket-handlers ` feature flag:
40
40
41
41
``` toml
42
42
[dependencies ]
43
- juniper = { version = " 0.8.0 " , features = [" rocket-handlers" ] }
43
+ juniper = { version = " 0.8.1 " , features = [" rocket-handlers" ] }
44
44
```
45
45
46
46
## Building schemas
@@ -128,7 +128,7 @@ Juniper has not reached 1.0 yet, thus some API instability should be expected.
128
128
129
129
## 1.0 Roadmap
130
130
131
- > Version 0.8.0 probably be re-released as 1.0 to indicate API stability.
131
+ > Version 0.8.1 probably be re-released as 1.0 to indicate API stability.
132
132
133
133
The road to 1.0 _ focuses_ on two aspects: making sure the API hasn't got any
134
134
obvious dead-ends with respect to probable future features, and improving test
@@ -149,7 +149,7 @@ as well.
149
149
* [X] Investigate asynchronous execution - implementing it is not necessary, but
150
150
at least look at what API changes will be needed for us to hook into
151
151
[ Tokio] [ tokio ] , for example.
152
- * [ ] Larger examples to illustrate things like database access
152
+ * [X ] Larger examples to illustrate things like database access
153
153
154
154
[ graphql ] : http://graphql.org
155
155
[ iron ] : http://ironframework.io
0 commit comments