Skip to content

Commit 685b615

Browse files
committed
Repository renamed from graphql-core-next to graphql-core
1 parent 68d550c commit 685b615

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ the JavaScript reference implementation for [GraphQL](https://graphql.org/),
55
a query language for APIs created by Facebook.
66

77
[![PyPI version](https://badge.fury.io/py/graphql-core.svg)](https://badge.fury.io/py/graphql-core)
8-
[![Documentation Status](https://readthedocs.org/projects/graphql-core-next/badge/)](https://graphql-core-next.readthedocs.io)
9-
[![Build Status](https://travis-ci.com/graphql-python/graphql-core-next.svg?branch=master)](https://travis-ci.com/graphql-python/graphql-core-next)
10-
[![Coverage Status](https://codecov.io/gh/graphql-python/graphql-core-next/branch/master/graph/badge.svg)](https://codecov.io/gh/graphql-python/graphql-core-next)
11-
[![Dependency Updates](https://pyup.io/repos/github/graphql-python/graphql-core-next/shield.svg)](https://pyup.io/repos/github/graphql-python/graphql-core-next/)
12-
[![Python 3 Status](https://pyup.io/repos/github/graphql-python/graphql-core-next/python-3-shield.svg)](https://pyup.io/repos/github/graphql-python/graphql-core-next/)
8+
[![Documentation Status](https://readthedocs.org/projects/graphql-core/badge/)](https://graphql-core.readthedocs.io)
9+
[![Build Status](https://travis-ci.com/graphql-python/graphql-core.svg?branch=master)](https://travis-ci.com/graphql-python/graphql-core)
10+
[![Coverage Status](https://codecov.io/gh/graphql-python/graphql-core/branch/master/graph/badge.svg)](https://codecov.io/gh/graphql-python/graphql-core)
11+
[![Dependency Updates](https://pyup.io/repos/github/graphql-python/graphql-core/shield.svg)](https://pyup.io/repos/github/graphql-python/graphql-core/)
12+
[![Python 3 Status](https://pyup.io/repos/github/graphql-python/graphql-core/python-3-shield.svg)](https://pyup.io/repos/github/graphql-python/graphql-core/)
1313
[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
1414

1515
The current stable version 3.0.3 of GraphQL-core is up-to-date with
@@ -21,7 +21,7 @@ An extensive test suite with over 2100 unit tests and 100% coverage also replica
2121
## Documentation
2222

2323
A more detailed documentation for GraphQL-core 3 can be found at
24-
[graphql-core-next.readthedocs.io](https://graphql-core-next.readthedocs.io/).
24+
[graphql-core.readthedocs.io](https://graphql-core.readthedocs.io/).
2525

2626
The documentation for GraphQL.js can be found at [graphql.org/graphql-js/](https://graphql.org/graphql-js/).
2727

@@ -213,17 +213,17 @@ Some restrictions (mostly in line with the design goals):
213213
* [Ariadne](https://github.com/mirumee/ariadne) is a Python library for implementing
214214
GraphQL servers using schema-first approach created by Mirumee Software.
215215

216-
Ariadne is already using GraphQL-core-next as its GraphQL implementation.
216+
Ariadne is already using GraphQL-core 3 as its GraphQL implementation.
217217

218218
* [Strawberry](https://github.com/strawberry-graphql/strawberry), created by Patrick
219219
Arminio, is a new GraphQL library for Python 3, inspired by dataclasses,
220-
that is also using GraphQL-core-next as underpinning.
220+
that is also using GraphQL-core 3 as underpinning.
221221

222222

223223
## Changelog
224224

225225
Changes are tracked as
226-
[GitHub releases](https://github.com/graphql-python/graphql-core-next/releases).
226+
[GitHub releases](https://github.com/graphql-python/graphql-core/releases).
227227

228228

229229
## Credits and history
@@ -245,5 +245,5 @@ and ported to many different programming languages.
245245
## License
246246

247247
GraphQL-core 3 is
248-
[MIT-licensed](https://github.com/graphql-python/graphql-core-next/blob/master/LICENSE),
248+
[MIT-licensed](https://github.com/graphql-python/graphql-core/blob/master/LICENSE),
249249
just like GraphQL.js.

docs/intro.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ in the current development or want to report issues or send pull requests.
8484

8585
.. _GraphQL: https://graphql.org/
8686
.. _GraphQL.js: https://github.com/graphql/graphql-js
87-
.. _GraphQL-core-3: https://github.com/graphql-python/graphql-core-next
88-
.. _GitHub repository of GraphQL-core 3: https://github.com/graphql-python/graphql-core-next
87+
.. _GraphQL-core-3: https://github.com/graphql-python/graphql-core
88+
.. _GitHub repository of GraphQL-core 3: https://github.com/graphql-python/graphql-core
8989
.. _Specification for GraphQL: https://facebook.github.io/graphql/
9090
.. _Language: https://facebook.github.io/graphql/draft/#sec-Language
9191
.. _Type System: https://facebook.github.io/graphql/draft/#sec-Type-System

docs/usage/other.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ GraphQL schemas and queries. We encourage you to explore the contents of the var
2222
code and tests of `GraphQL-core 3`_ in order to find all the functionality that is
2323
provided and understand it in detail.
2424

25-
.. _GraphQL-core 3: https://github.com/graphql-python/graphql-core-next
25+
.. _GraphQL-core 3: https://github.com/graphql-python/graphql-core

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ authors = [
99
"Christoph Zwerschke <[email protected]>"
1010
]
1111
readme = "README.md"
12-
homepage = "https://github.com/graphql-python/graphql-core-next"
13-
repository = "https://github.com/graphql-python/graphql-core-next"
14-
documentation = "https://graphql-core-next.readthedocs.io/"
12+
homepage = "https://github.com/graphql-python/graphql-core"
13+
repository = "https://github.com/graphql-python/graphql-core"
14+
documentation = "https://graphql-core.readthedocs.io/"
1515
keywords = ["graphql"]
1616
classifiers = [
1717
"Development Status :: 5 - Production/Stable",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
long_description=readme,
1616
long_description_content_type="text/markdown",
1717
keywords="graphql",
18-
url="https://github.com/graphql-python/graphql-core-next",
18+
url="https://github.com/graphql-python/graphql-core",
1919
author="Christoph Zwerschke",
2020
author_email="[email protected]",
2121
license="MIT license",

0 commit comments

Comments
 (0)