Skip to content

Commit a826b22

Browse files
committed
Update Readme and Cargo files for new repo url
1 parent 2ca9baa commit a826b22

File tree

4 files changed

+36
-36
lines changed

4 files changed

+36
-36
lines changed

CHANGELOG.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ Tiny release to fix broken crate metadata on crates.io.
2727

2828
If an incoming integer is out of range for a 32 bit signed integer type, an
2929
error will be returned to the client.
30-
([#52](https://github.com/mhallin/juniper/issues/52),
31-
[#49](https://github.com/mhallin/juniper/issues/49))
30+
([#52](https://github.com/graphql-rust/juniper/issues/52),
31+
[#49](https://github.com/graphql-rust/juniper/issues/49))
3232

3333
* Serde has been updated to 1.0. If your application depends on an older
3434
version, you will need to first update your application before you can upgrade
35-
to a more recent Juniper. ([#43](https://github.com/mhallin/juniper/pull/43))
35+
to a more recent Juniper. ([#43](https://github.com/graphql-rust/juniper/pull/43))
3636

3737
* `rustc_serialize` support has been dropped since this library is now
38-
deprecated. ([#51](https://github.com/mhallin/juniper/pull/51))
38+
deprecated. ([#51](https://github.com/graphql-rust/juniper/pull/51))
3939

4040
## New features
4141

@@ -46,14 +46,14 @@ Tiny release to fix broken crate metadata on crates.io.
4646
## Bugfixes
4747

4848
* A panic in the parser has been replaced with a proper error
49-
([#44](https://github.com/mhallin/juniper/pull/44))
49+
([#44](https://github.com/graphql-rust/juniper/pull/44))
5050

5151
## [0.7.0] – 2017-02-26
5252

5353
### Breaking changes
5454

5555
* The `iron-handlers` feature now depends on Iron 0.5
56-
([#30](https://github.com/mhallin/juniper/pull/30)). Because of
56+
([#30](https://github.com/graphql-rust/juniper/pull/30)). Because of
5757
this, support for Rust 1.12 has been dropped. It might still work if
5858
you're not using the Iron integrations feature, however.
5959

@@ -68,63 +68,63 @@ Tiny release to fix broken crate metadata on crates.io.
6868
### New features
6969

7070
* Add support for default values on input object fields
71-
([#28](https://github.com/mhallin/juniper/issues/28))
71+
([#28](https://github.com/graphql-rust/juniper/issues/28))
7272

7373
## [0.6.2] – 2017-02-05
7474

7575
### New features
7676

7777
* The `null` literal is now supported in the GraphQL
78-
language. ([#26](https://github.com/mhallin/juniper/pull/26))
78+
language. ([#26](https://github.com/graphql-rust/juniper/pull/26))
7979
* Rustc-serialize is now optional, but enabled by default. If you
8080
_only_ want Serde support, include Juniper without default features
8181
and enable
82-
Serde. ([#12](https://github.com/mhallin/juniper/pull/12))
82+
Serde. ([#12](https://github.com/graphql-rust/juniper/pull/12))
8383
* The built-in `ID` type now has a public constructor and derives a
8484
few traits (`Clone`, `Debug`, `Eq`, `PartialEq`, `From<String>`,
85-
`Deref<Target=str>`). ([#19](https://github.com/mhallin/juniper/pull/19))
85+
`Deref<Target=str>`). ([#19](https://github.com/graphql-rust/juniper/pull/19))
8686
* Juniper is now built and tested against all Rust compilers since
8787
version 1.12.1.
8888

8989
### Minor breaking change
9090

9191
* Serde has been updated to
92-
0.9. ([#25](https://github.com/mhallin/juniper/pull/25))
92+
0.9. ([#25](https://github.com/graphql-rust/juniper/pull/25))
9393

9494
### Bugfixes
9595

9696
* The built-in GraphiQL handler had a bug in variable serialization.
97-
([#16](https://github.com/mhallin/juniper/pull/16))
97+
([#16](https://github.com/graphql-rust/juniper/pull/16))
9898
* The example should now build and run without problems on
99-
Windows. ([#15](https://github.com/mhallin/juniper/pull/15))
99+
Windows. ([#15](https://github.com/graphql-rust/juniper/pull/15))
100100
* Object types now properly implement
101-
`__typename`. ([#22](https://github.com/mhallin/juniper/pull/22))
101+
`__typename`. ([#22](https://github.com/graphql-rust/juniper/pull/22))
102102
* String variables are now properly parsed into GraphQL
103-
enums. ([#17](https://github.com/mhallin/juniper/pull/17))
103+
enums. ([#17](https://github.com/graphql-rust/juniper/pull/17))
104104

105105
## [0.6.1] – 2017-01-06
106106

107107
### New features
108108

109109
* Optional Serde support
110-
([#8](https://github.com/mhallin/juniper/pull/8))
110+
([#8](https://github.com/graphql-rust/juniper/pull/8))
111111

112112
### Improvements
113113

114114
* The `graphql_input_object!` macro can now be used to define input
115115
objects as public Rust structs.
116116
* GraphiQL in the Iron GraphiQL handler has been updated to 0.8.1
117-
(#[#11](https://github.com/mhallin/juniper/pull/11))
117+
(#[#11](https://github.com/graphql-rust/juniper/pull/11))
118118

119119
### Minor breaking changes
120120

121121
Some undocumented but public APIs were changed.
122122

123123
* `to_snake_case` correctly renamed to `to_camel_case`
124-
([#9](https://github.com/mhallin/juniper/pull/9))
124+
([#9](https://github.com/graphql-rust/juniper/pull/9))
125125
* JSON serialization of `GraphQLError` changed to be more consistent
126126
with how other values were serialized
127-
([#10](https://github.com/mhallin/juniper/pull/10)).
127+
([#10](https://github.com/graphql-rust/juniper/pull/10)).
128128

129129
## [0.6.0] – 2017-01-02
130130

@@ -340,11 +340,11 @@ using the macros and not deriving `GraphQLType` directly.
340340
* Macro syntax stability has also been improved. All syntactical edge
341341
cases of the macros have gotten tests to verify their correctness.
342342

343-
[0.8.0]: https://github.com/mhallin/juniper/compare/0.8.0...0.8.1
344-
[0.8.0]: https://github.com/mhallin/juniper/compare/0.7.0...0.8.0
345-
[0.7.0]: https://github.com/mhallin/juniper/compare/0.6.3...0.7.0
346-
[0.6.3]: https://github.com/mhallin/juniper/compare/0.6.2...0.6.3
347-
[0.6.2]: https://github.com/mhallin/juniper/compare/0.6.1...0.6.2
348-
[0.6.1]: https://github.com/mhallin/juniper/compare/0.6.0...0.6.1
349-
[0.6.0]: https://github.com/mhallin/juniper/compare/0.5.3...0.6.0
350-
[0.5.3]: https://github.com/mhallin/juniper/compare/0.5.2...0.5.3
343+
[0.8.0]: https://github.com/graphql-rust/juniper/compare/0.8.0...0.8.1
344+
[0.8.0]: https://github.com/graphql-rust/juniper/compare/0.7.0...0.8.0
345+
[0.7.0]: https://github.com/graphql-rust/juniper/compare/0.6.3...0.7.0
346+
[0.6.3]: https://github.com/graphql-rust/juniper/compare/0.6.2...0.6.3
347+
[0.6.2]: https://github.com/graphql-rust/juniper/compare/0.6.1...0.6.2
348+
[0.6.1]: https://github.com/graphql-rust/juniper/compare/0.6.0...0.6.1
349+
[0.6.0]: https://github.com/graphql-rust/juniper/compare/0.5.3...0.6.0
350+
[0.5.3]: https://github.com/graphql-rust/juniper/compare/0.5.2...0.5.3

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

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

juniper/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ version = "0.8.1"
44
authors = ["Magnus Hallin <[email protected]>"]
55
description = "GraphQL server library"
66
license = "BSD-2-Clause"
7-
documentation = "https://docs.rs/juniper/0.8.1/juniper/"
8-
repository = "https://github.com/mhallin/juniper"
7+
documentation = "https://docs.rs/juniper"
8+
repository = "https://github.com/graphql-rust/juniper"
99
readme = "README.md"
1010
keywords = ["graphql", "server", "web", "rocket"]
1111
categories = ["web-programming"]
1212

1313
[badges]
14-
travis-ci = { repository = "mhallin/juniper" }
15-
appveyor = { repository = "mhallin/juniper" }
14+
travis-ci = { repository = "graphql-rust/juniper" }
15+
appveyor = { repository = "graphql-rust/juniper" }
1616

1717
[[bench]]
1818
name = "bench"

juniper_codegen/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Magnus Hallin <[email protected]>"]
55
description = "Internal custom derive trait for Juniper GraphQL"
66
license = "BSD-2-Clause"
77
documentation = "https://docs.rs/juniper"
8-
repository = "https://github.com/mhallin/juniper"
8+
repository = "https://github.com/graphql-rust/juniper"
99

1010
[lib]
1111
proc-macro = true
@@ -15,5 +15,5 @@ syn = "0.11.11"
1515
quote = "0.3.15"
1616

1717
[badges]
18-
travis-ci = { repository = "mhallin/juniper" }
19-
appveyor = { repository = "mhallin/juniper" }
18+
travis-ci = { repository = "graphql-rust/juniper" }
19+
appveyor = { repository = "graphql-rust/juniper" }

0 commit comments

Comments
 (0)