Fix broken crate metadata, prepare 0.8.1 release

This commit is contained in:
Magnus Hallin 2017-06-15 20:32:22 +02:00
parent f336a9a97a
commit 39159acb41
3 changed files with 14 additions and 9 deletions

View file

@ -1,6 +1,10 @@
Change log Change log
========== ==========
## [0.8.1] 2017-06-15
Tiny release to fix broken crate metadata on crates.io.
## [0.8.0] 2017-06-15 ## [0.8.0] 2017-06-15
## Breaking changes ## Breaking changes
@ -325,6 +329,7 @@ using the macros and not deriving `GraphQLType` directly.
* Macro syntax stability has also been improved. All syntactical edge * Macro syntax stability has also been improved. All syntactical edge
cases of the macros have gotten tests to verify their correctness. cases of the macros have gotten tests to verify their correctness.
[0.8.0]: https://github.com/mhallin/juniper/compare/0.8.0...0.8.1
[0.8.0]: https://github.com/mhallin/juniper/compare/0.7.0...0.8.0 [0.8.0]: https://github.com/mhallin/juniper/compare/0.7.0...0.8.0
[0.7.0]: https://github.com/mhallin/juniper/compare/0.6.3...0.7.0 [0.7.0]: https://github.com/mhallin/juniper/compare/0.6.3...0.7.0
[0.6.3]: https://github.com/mhallin/juniper/compare/0.6.2...0.6.3 [0.6.3]: https://github.com/mhallin/juniper/compare/0.6.2...0.6.3

View file

@ -1,13 +1,13 @@
[package] [package]
name = "juniper" name = "juniper"
version = "0.8.0" version = "0.8.1"
authors = ["Magnus Hallin <mhallin@fastmail.com>"] authors = ["Magnus Hallin <mhallin@fastmail.com>"]
description = "GraphQL server library" description = "GraphQL server library"
license = "BSD-2-Clause" license = "BSD-2-Clause"
documentation = "http://mhallin.github.io/juniper" documentation = "https://docs.rs/juniper/0.8.1/juniper/"
repository = "https://docs.rs/juniper" repository = "https://github.com/mhallin/juniper"
readme = "README.md" readme = "README.md"
keywords = ["graphql", "server", "iron", "http", "web"] keywords = ["graphql", "server", "iron", "web", "rocket"]
categories = ["web-programming"] categories = ["web-programming"]
[package.metadata.docs.rs] [package.metadata.docs.rs]

View file

@ -24,7 +24,7 @@ Add Juniper to your Cargo.toml:
```toml ```toml
[dependencies] [dependencies]
juniper = "0.8.0" juniper = "0.8.1"
``` ```
If you want the Iron integration enabled, you need to enable the `iron-handlers` If you want the Iron integration enabled, you need to enable the `iron-handlers`
@ -32,7 +32,7 @@ feature flag:
```toml ```toml
[dependencies] [dependencies]
juniper = { version = "0.8.0", features = ["iron-handlers"] } juniper = { version = "0.8.1", features = ["iron-handlers"] }
``` ```
If you want the Rocket integration enabled, you need to use the nightly Rust If you want the Rocket integration enabled, you need to use the nightly Rust
@ -40,7 +40,7 @@ compiler and enable the `rocket-handlers` feature flag:
```toml ```toml
[dependencies] [dependencies]
juniper = { version = "0.8.0", features = ["rocket-handlers"] } juniper = { version = "0.8.1", features = ["rocket-handlers"] }
``` ```
## Building schemas ## Building schemas
@ -128,7 +128,7 @@ Juniper has not reached 1.0 yet, thus some API instability should be expected.
## 1.0 Roadmap ## 1.0 Roadmap
> Version 0.8.0 probably be re-released as 1.0 to indicate API stability. > Version 0.8.1 probably be re-released as 1.0 to indicate API stability.
The road to 1.0 _focuses_ on two aspects: making sure the API hasn't got any The road to 1.0 _focuses_ on two aspects: making sure the API hasn't got any
obvious dead-ends with respect to probable future features, and improving test obvious dead-ends with respect to probable future features, and improving test
@ -149,7 +149,7 @@ as well.
* [X] Investigate asynchronous execution - implementing it is not necessary, but * [X] Investigate asynchronous execution - implementing it is not necessary, but
at least look at what API changes will be needed for us to hook into at least look at what API changes will be needed for us to hook into
[Tokio][tokio], for example. [Tokio][tokio], for example.
* [ ] Larger examples to illustrate things like database access * [X] Larger examples to illustrate things like database access
[graphql]: http://graphql.org [graphql]: http://graphql.org
[iron]: http://ironframework.io [iron]: http://ironframework.io