Update Readme and Cargo files for new repo url

This commit is contained in:
theduke 2017-08-07 08:15:50 +02:00
parent 2ca9baa441
commit a826b22ffb
4 changed files with 36 additions and 36 deletions

View file

@ -27,15 +27,15 @@ Tiny release to fix broken crate metadata on crates.io.
If an incoming integer is out of range for a 32 bit signed integer type, an If an incoming integer is out of range for a 32 bit signed integer type, an
error will be returned to the client. error will be returned to the client.
([#52](https://github.com/mhallin/juniper/issues/52), ([#52](https://github.com/graphql-rust/juniper/issues/52),
[#49](https://github.com/mhallin/juniper/issues/49)) [#49](https://github.com/graphql-rust/juniper/issues/49))
* Serde has been updated to 1.0. If your application depends on an older * Serde has been updated to 1.0. If your application depends on an older
version, you will need to first update your application before you can upgrade version, you will need to first update your application before you can upgrade
to a more recent Juniper. ([#43](https://github.com/mhallin/juniper/pull/43)) to a more recent Juniper. ([#43](https://github.com/graphql-rust/juniper/pull/43))
* `rustc_serialize` support has been dropped since this library is now * `rustc_serialize` support has been dropped since this library is now
deprecated. ([#51](https://github.com/mhallin/juniper/pull/51)) deprecated. ([#51](https://github.com/graphql-rust/juniper/pull/51))
## New features ## New features
@ -46,14 +46,14 @@ Tiny release to fix broken crate metadata on crates.io.
## Bugfixes ## Bugfixes
* A panic in the parser has been replaced with a proper error * A panic in the parser has been replaced with a proper error
([#44](https://github.com/mhallin/juniper/pull/44)) ([#44](https://github.com/graphql-rust/juniper/pull/44))
## [0.7.0] 2017-02-26 ## [0.7.0] 2017-02-26
### Breaking changes ### Breaking changes
* The `iron-handlers` feature now depends on Iron 0.5 * The `iron-handlers` feature now depends on Iron 0.5
([#30](https://github.com/mhallin/juniper/pull/30)). Because of ([#30](https://github.com/graphql-rust/juniper/pull/30)). Because of
this, support for Rust 1.12 has been dropped. It might still work if this, support for Rust 1.12 has been dropped. It might still work if
you're not using the Iron integrations feature, however. you're not using the Iron integrations feature, however.
@ -68,63 +68,63 @@ Tiny release to fix broken crate metadata on crates.io.
### New features ### New features
* Add support for default values on input object fields * Add support for default values on input object fields
([#28](https://github.com/mhallin/juniper/issues/28)) ([#28](https://github.com/graphql-rust/juniper/issues/28))
## [0.6.2] 2017-02-05 ## [0.6.2] 2017-02-05
### New features ### New features
* The `null` literal is now supported in the GraphQL * The `null` literal is now supported in the GraphQL
language. ([#26](https://github.com/mhallin/juniper/pull/26)) language. ([#26](https://github.com/graphql-rust/juniper/pull/26))
* Rustc-serialize is now optional, but enabled by default. If you * Rustc-serialize is now optional, but enabled by default. If you
_only_ want Serde support, include Juniper without default features _only_ want Serde support, include Juniper without default features
and enable and enable
Serde. ([#12](https://github.com/mhallin/juniper/pull/12)) Serde. ([#12](https://github.com/graphql-rust/juniper/pull/12))
* The built-in `ID` type now has a public constructor and derives a * The built-in `ID` type now has a public constructor and derives a
few traits (`Clone`, `Debug`, `Eq`, `PartialEq`, `From<String>`, few traits (`Clone`, `Debug`, `Eq`, `PartialEq`, `From<String>`,
`Deref<Target=str>`). ([#19](https://github.com/mhallin/juniper/pull/19)) `Deref<Target=str>`). ([#19](https://github.com/graphql-rust/juniper/pull/19))
* Juniper is now built and tested against all Rust compilers since * Juniper is now built and tested against all Rust compilers since
version 1.12.1. version 1.12.1.
### Minor breaking change ### Minor breaking change
* Serde has been updated to * Serde has been updated to
0.9. ([#25](https://github.com/mhallin/juniper/pull/25)) 0.9. ([#25](https://github.com/graphql-rust/juniper/pull/25))
### Bugfixes ### Bugfixes
* The built-in GraphiQL handler had a bug in variable serialization. * The built-in GraphiQL handler had a bug in variable serialization.
([#16](https://github.com/mhallin/juniper/pull/16)) ([#16](https://github.com/graphql-rust/juniper/pull/16))
* The example should now build and run without problems on * The example should now build and run without problems on
Windows. ([#15](https://github.com/mhallin/juniper/pull/15)) Windows. ([#15](https://github.com/graphql-rust/juniper/pull/15))
* Object types now properly implement * Object types now properly implement
`__typename`. ([#22](https://github.com/mhallin/juniper/pull/22)) `__typename`. ([#22](https://github.com/graphql-rust/juniper/pull/22))
* String variables are now properly parsed into GraphQL * String variables are now properly parsed into GraphQL
enums. ([#17](https://github.com/mhallin/juniper/pull/17)) enums. ([#17](https://github.com/graphql-rust/juniper/pull/17))
## [0.6.1] 2017-01-06 ## [0.6.1] 2017-01-06
### New features ### New features
* Optional Serde support * Optional Serde support
([#8](https://github.com/mhallin/juniper/pull/8)) ([#8](https://github.com/graphql-rust/juniper/pull/8))
### Improvements ### Improvements
* The `graphql_input_object!` macro can now be used to define input * The `graphql_input_object!` macro can now be used to define input
objects as public Rust structs. objects as public Rust structs.
* GraphiQL in the Iron GraphiQL handler has been updated to 0.8.1 * GraphiQL in the Iron GraphiQL handler has been updated to 0.8.1
(#[#11](https://github.com/mhallin/juniper/pull/11)) (#[#11](https://github.com/graphql-rust/juniper/pull/11))
### Minor breaking changes ### Minor breaking changes
Some undocumented but public APIs were changed. Some undocumented but public APIs were changed.
* `to_snake_case` correctly renamed to `to_camel_case` * `to_snake_case` correctly renamed to `to_camel_case`
([#9](https://github.com/mhallin/juniper/pull/9)) ([#9](https://github.com/graphql-rust/juniper/pull/9))
* JSON serialization of `GraphQLError` changed to be more consistent * JSON serialization of `GraphQLError` changed to be more consistent
with how other values were serialized with how other values were serialized
([#10](https://github.com/mhallin/juniper/pull/10)). ([#10](https://github.com/graphql-rust/juniper/pull/10)).
## [0.6.0] 2017-01-02 ## [0.6.0] 2017-01-02
@ -340,11 +340,11 @@ 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/graphql-rust/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/graphql-rust/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/graphql-rust/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/graphql-rust/juniper/compare/0.6.2...0.6.3
[0.6.2]: https://github.com/mhallin/juniper/compare/0.6.1...0.6.2 [0.6.2]: https://github.com/graphql-rust/juniper/compare/0.6.1...0.6.2
[0.6.1]: https://github.com/mhallin/juniper/compare/0.6.0...0.6.1 [0.6.1]: https://github.com/graphql-rust/juniper/compare/0.6.0...0.6.1
[0.6.0]: https://github.com/mhallin/juniper/compare/0.5.3...0.6.0 [0.6.0]: https://github.com/graphql-rust/juniper/compare/0.5.3...0.6.0
[0.5.3]: https://github.com/mhallin/juniper/compare/0.5.2...0.5.3 [0.5.3]: https://github.com/graphql-rust/juniper/compare/0.5.2...0.5.3

View file

@ -2,8 +2,8 @@
> GraphQL server library for Rust > GraphQL server library for Rust
[![Build Status](https://travis-ci.org/mhallin/juniper.svg?branch=master)](https://travis-ci.org/mhallin/juniper) [![Build Status](https://travis-ci.org/graphql-rust/juniper.svg?branch=master)](https://travis-ci.org/graphql-rust/juniper)
[![Build status](https://ci.appveyor.com/api/projects/status/fq6m6e7dof6trrpf/branch/master?svg=true)](https://ci.appveyor.com/project/mhallin/juniper/branch/master) [![Build status](https://ci.appveyor.com/api/projects/status/fq6m6e7dof6trrpf/branch/master?svg=true)](https://ci.appveyor.com/project/graphql-rust/juniper/branch/master)
[![Crates.io](https://img.shields.io/crates/v/juniper.svg?maxAge=2592000)](https://crates.io/crates/juniper) [![Crates.io](https://img.shields.io/crates/v/juniper.svg?maxAge=2592000)](https://crates.io/crates/juniper)
[![Gitter chat](https://badges.gitter.im/juniper-graphql/gitter.png)](https://gitter.im/juniper-graphql) [![Gitter chat](https://badges.gitter.im/juniper-graphql/gitter.png)](https://gitter.im/juniper-graphql)

View file

@ -4,15 +4,15 @@ 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 = "https://docs.rs/juniper/0.8.1/juniper/" documentation = "https://docs.rs/juniper"
repository = "https://github.com/mhallin/juniper" repository = "https://github.com/graphql-rust/juniper"
readme = "README.md" readme = "README.md"
keywords = ["graphql", "server", "web", "rocket"] keywords = ["graphql", "server", "web", "rocket"]
categories = ["web-programming"] categories = ["web-programming"]
[badges] [badges]
travis-ci = { repository = "mhallin/juniper" } travis-ci = { repository = "graphql-rust/juniper" }
appveyor = { repository = "mhallin/juniper" } appveyor = { repository = "graphql-rust/juniper" }
[[bench]] [[bench]]
name = "bench" name = "bench"

View file

@ -5,7 +5,7 @@ authors = ["Magnus Hallin <mhallin@fastmail.com>"]
description = "Internal custom derive trait for Juniper GraphQL" description = "Internal custom derive trait for Juniper GraphQL"
license = "BSD-2-Clause" license = "BSD-2-Clause"
documentation = "https://docs.rs/juniper" documentation = "https://docs.rs/juniper"
repository = "https://github.com/mhallin/juniper" repository = "https://github.com/graphql-rust/juniper"
[lib] [lib]
proc-macro = true proc-macro = true
@ -15,5 +15,5 @@ syn = "0.11.11"
quote = "0.3.15" quote = "0.3.15"
[badges] [badges]
travis-ci = { repository = "mhallin/juniper" } travis-ci = { repository = "graphql-rust/juniper" }
appveyor = { repository = "mhallin/juniper" } appveyor = { repository = "graphql-rust/juniper" }