Skip to content

Commit 682e044

Browse files
committed
Version 3.0.2 is up-to-date with GraphQL.js 14.6.0
1 parent cc65a03 commit 682e044

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.bumpversion.cfg

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.0.1
2+
current_version = 3.0.2
33
commit = False
44
tag = False
55

@@ -8,8 +8,8 @@ search = version = "{current_version}"
88
replace = version = "{new_version}"
99

1010
[bumpversion:file:docs/conf.py]
11-
search = version = release = u'{current_version}'
12-
replace = version = release = u'{new_version}'
11+
search = version = release = '{current_version}'
12+
replace = version = release = '{new_version}'
1313

1414
[bumpversion:file:README.md]
1515
search = The current version {current_version}

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ a query language for APIs created by Facebook.
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
[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
1414

15-
The current version 3.0.1 of GraphQL-core is up-to-date
16-
with GraphQL.js version 14.5.8.
15+
The current version 3.0.2 of GraphQL-core is up-to-date
16+
with GraphQL.js version 14.6.0.
1717

1818
All parts of the API are covered by an extensive test suite
1919
of currently 1991 unit tests.

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 = '3.0'
6363
# The full version, including alpha/beta/rc tags.
64-
version = release = '3.0.1'
64+
version = release = '3.0.2'
6565

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

pyproject.toml

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

src/graphql/version.py

+2-2
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.0.1"
7+
version = "3.0.2"
88

9-
version_js = "14.5.8"
9+
version_js = "14.6.0"
1010

1111

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

0 commit comments

Comments
 (0)