Skip to content

Commit 619a77a

Browse files
committed
Alpha release v3.3.0a2 with new features
1 parent 8d7d0f6 commit 619a77a

File tree

6 files changed

+37
-37
lines changed

6 files changed

+37
-37
lines changed

.bumpversion.cfg

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

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ reliable and compatible with GraphQL.js.
1616

1717
The current stable version 3.2.3 of GraphQL-core is up-to-date with GraphQL.js version 16.6.0.
1818

19-
You can also try out the latest alpha version 3.3.0a1 of GraphQL-core that is up-to-date with GraphQL.js version 17.0.0a1.
19+
You can also try out the latest alpha version 3.3.0a2 of GraphQL-core that is up-to-date with GraphQL.js version 17.0.0a1.
2020
Please note that this new minor version of GraphQL-core does not support Python 3.7 anymore.
2121

2222
Note that for various reasons, GraphQL-core does not use SemVer like GraphQL.js. Changes in the major version of GraphQL.js are reflected in the minor version of GraphQL-core instead. This means there can be breaking changes in the API when the minor version changes, and only patch releases are fully backward compatible. Therefore, we recommend something like `=~ 3.2.0` as version specifier when including GraphQL-core as a dependency.

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

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

poetry.lock

+32-32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.3.0a1"
3+
version = "3.3.0a2"
44
description = """
55
GraphQL-core is a Python port of GraphQL.js,\
66
the JavaScript reference implementation for GraphQL."""

src/graphql/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
__all__ = ["version", "version_info", "version_js", "version_info_js"]
88

99

10-
version = "3.3.0a1"
10+
version = "3.3.0a2"
1111

1212
version_js = "17.0.0a1"
1313

0 commit comments

Comments
 (0)