Skip to content

Commit 39159ac

Browse files
committed
Fix broken crate metadata, prepare 0.8.1 release
1 parent f336a9a commit 39159ac

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Change log
22
==========
33

4+
## [0.8.1] – 2017-06-15
5+
6+
Tiny release to fix broken crate metadata on crates.io.
7+
48
## [0.8.0] – 2017-06-15
59

610
## Breaking changes
@@ -325,6 +329,7 @@ using the macros and not deriving `GraphQLType` directly.
325329
* Macro syntax stability has also been improved. All syntactical edge
326330
cases of the macros have gotten tests to verify their correctness.
327331

332+
[0.8.0]: https://github.com/mhallin/juniper/compare/0.8.0...0.8.1
328333
[0.8.0]: https://github.com/mhallin/juniper/compare/0.7.0...0.8.0
329334
[0.7.0]: https://github.com/mhallin/juniper/compare/0.6.3...0.7.0
330335
[0.6.3]: https://github.com/mhallin/juniper/compare/0.6.2...0.6.3

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "juniper"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors = ["Magnus Hallin <[email protected]>"]
55
description = "GraphQL server library"
66
license = "BSD-2-Clause"
7-
documentation = "http://mhallin.github.io/juniper"
8-
repository = "https://docs.rs/juniper"
7+
documentation = "https://docs.rs/juniper/0.8.1/juniper/"
8+
repository = "https://github.com/mhallin/juniper"
99
readme = "README.md"
10-
keywords = ["graphql", "server", "iron", "http", "web"]
10+
keywords = ["graphql", "server", "iron", "web", "rocket"]
1111
categories = ["web-programming"]
1212

1313
[package.metadata.docs.rs]

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -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

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.8.0", features = ["iron-handlers"] }
35+
juniper = { version = "0.8.1", features = ["iron-handlers"] }
3636
```
3737

3838
If you want the Rocket integration enabled, you need to use the nightly Rust
3939
compiler 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
133133
The road to 1.0 _focuses_ on two aspects: making sure the API hasn't got any
134134
obvious 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

Comments
 (0)