Skip to content

Commit e18504e

Browse files
committed
Prepare version 1.0.0
1 parent 5ca12ad commit e18504e

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ a query language for APIs created by Facebook.
1111
[![Dependency Updates](https://pyup.io/repos/github/graphql-python/graphql-core-next/shield.svg)](https://pyup.io/repos/github/graphql-python/graphql-core-next/)
1212
[![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/)
1313

14-
The current version 1.0.0rc2 of GraphQL-core-next is up-to-date with GraphQL.js
14+
The current version 1.0.0 of GraphQL-core-next is up-to-date with GraphQL.js
1515
version 14.0.0. All parts of the API are covered by an extensive test suite of
16-
currently 1602 unit tests.
16+
currently 1603 unit tests.
1717

1818

1919
## Documentation

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
version = u'1.0'
6363
# The full version, including alpha/beta/rc tags.
64-
release = u'1.0.0.rc2'
64+
release = u'1.0.0'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

graphql/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
- `graphql/subscription`: Subscribe to data updates.
3838
"""
3939

40-
__version__ = '1.0.0rc2'
40+
__version__ = '1.0.0'
4141
__version_js__ = '14.0.0'
4242

4343
# The primary entry point into fulfilling a GraphQL request.

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.0rc2
2+
current_version = 1.0.0
33
commit = True
44
tag = True
55

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
package_data={'graphql': ['py.typed']},
2828

2929
classifiers=[
30-
'Development Status :: 4 - Beta',
30+
'Development Status :: 5 - Production/Stable',
3131
'Intended Audience :: Developers',
3232
'License :: OSI Approved :: MIT License',
3333
'Programming Language :: Python :: 3',

0 commit comments

Comments
 (0)