Skip to content

Commit e9ac4e0

Browse files
committed
Final v3.1.0 release, matching GrapqhQL.js v15.0.0
Replicates graphql/graphql-js@278bde0
1 parent 7dbfd07 commit e9ac4e0

File tree

7 files changed

+28
-32
lines changed

7 files changed

+28
-32
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.1.0b2
2+
current_version = 3.1.0
33
commit = False
44
tag = False
55

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,11 @@ a query language for APIs created by Facebook.
1212
[![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

15-
The current stable version 3.0.3 of GraphQL-core is up-to-date with
16-
GraphQL.js version 14.6.0.
15+
The current version 3.1.0 of GraphQL-core is up-to-date with GraphQL.js version 15.0.0.
1716

18-
The latest beta version 3.1.0b1 of GraphQL-core is up-to-date with
19-
GraphQL.js version 15.0.0rc2.
20-
21-
An extensive test suite with over 2100 unit tests and 100% coverage
22-
also replicates the test suite of GraphQL.js, making sure this port
23-
is reliable and compatible with GraphQL.js.
17+
An extensive test suite with over 2100 unit tests and 100% coverage comprises a
18+
replication of the complete test suite of GraphQL.js, making sure this port is
19+
reliable and compatible with GraphQL.js.
2420

2521

2622
## Documentation

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
# version = '3.1'
6363
# The full version, including alpha/beta/rc tags.
64-
version = release = '3.1.0b2'
64+
version = release = '3.1.0'
6565

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

poetry.lock

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "graphql-core"
3-
version = "3.1.0b2"
3+
version = "3.1.0"
44
description = """
55
GraphQL-core is a Python port of GraphQL.js,
66
the JavaScript reference implementation for GraphQL."""

src/graphql/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
__all__ = ["version", "version_info", "version_js", "version_info_js"]
55

66

7-
version = "3.1.0b2"
7+
version = "3.1.0"
88

9-
version_js = "15.0.0c2"
9+
version_js = "15.0.0"
1010

1111

1212
_re_version = re.compile(r"(\d+)\.(\d+)\.(\d+)(\D*)(\d*)")

tests/test_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def version_info_has_correct_fields():
7676
assert version_info.micro == int(groups[2])
7777
if groups[3] is None: # pragma: no cover
7878
assert groups[4] is None
79-
else:
79+
else: # pragma: no cover
8080
assert version_info.releaselevel[:1] == groups[3]
8181
assert version_info.serial == int(groups[4])
8282

@@ -102,6 +102,6 @@ def version_info_js_has_correct_fields():
102102
assert version_info_js.micro == int(groups[2])
103103
if groups[3] is None: # pragma: no cover
104104
assert groups[4] is None
105-
else:
105+
else: # pragma: no cover
106106
assert version_info_js.releaselevel[:1] == groups[3]
107107
assert version_info_js.serial == int(groups[4])

0 commit comments

Comments
 (0)