Skip to content

Commit 8bec246

Browse files
committed
Bump version
1 parent ba1299a commit 8bec246

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

.bumpversion.cfg

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

@@ -18,4 +18,3 @@ replace = The current version {new_version}
1818
[bumpversion:file:pyproject.toml]
1919
search = version = "{current_version}"
2020
replace = version = "{new_version}"
21-

README.md

Lines changed: 2 additions & 2 deletions
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.0a1 of GraphQL-core is up-to-date
16-
with GraphQL.js version 14.4.0.
15+
The current version 3.0.0a2 of GraphQL-core is up-to-date
16+
with GraphQL.js version 14.4.1.
1717

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

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

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

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.0.0a1"
3+
version = "3.0.0a2"
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.0.0a1"
7+
version = "3.0.0a2"
88

9-
version_js = "14.4.0"
9+
version_js = "14.4.1"
1010

1111

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

0 commit comments

Comments
 (0)