@@ -24,23 +24,23 @@ Add Juniper to your Cargo.toml:
2424
2525``` toml
2626[dependencies ]
27- juniper = " 0.8.0 "
27+ juniper = " 0.8.1 "
2828```
2929
3030If you want the Iron integration enabled, you need to enable the ` iron-handlers `
3131feature flag:
3232
3333``` toml
3434[dependencies ]
35- juniper = { version = " 0.8.0 " , features = [" iron-handlers" ] }
35+ juniper = { version = " 0.8.1 " , features = [" iron-handlers" ] }
3636```
3737
3838If you want the Rocket integration enabled, you need to use the nightly Rust
3939compiler and enable the ` rocket-handlers ` feature flag:
4040
4141``` toml
4242[dependencies ]
43- juniper = { version = " 0.8.0 " , features = [" rocket-handlers" ] }
43+ juniper = { version = " 0.8.1 " , features = [" rocket-handlers" ] }
4444```
4545
4646## Building schemas
@@ -128,7 +128,7 @@ Juniper has not reached 1.0 yet, thus some API instability should be expected.
128128
129129## 1.0 Roadmap
130130
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.
132132
133133The road to 1.0 _ focuses_ on two aspects: making sure the API hasn't got any
134134obvious dead-ends with respect to probable future features, and improving test
@@ -149,7 +149,7 @@ as well.
149149* [X] Investigate asynchronous execution - implementing it is not necessary, but
150150 at least look at what API changes will be needed for us to hook into
151151 [ Tokio] [ tokio ] , for example.
152- * [ ] Larger examples to illustrate things like database access
152+ * [X ] Larger examples to illustrate things like database access
153153
154154[ graphql ] : http://graphql.org
155155[ iron ] : http://ironframework.io
0 commit comments