Skip to content

Commit 6a9ef23

Browse files
committed
Bump version
1 parent 44eef9f commit 6a9ef23

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
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.3.0a10
2+
current_version = 3.3.0a11
33
commit = False
44
tag = False
55

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ with GraphQL.js.
1818
The current stable version 3.2.6 of GraphQL-core is up-to-date with GraphQL.js
1919
version 16.8.2 and supports Python versions 3.6 to 3.13.
2020

21-
You can also try out the latest alpha version 3.3.0a10 of GraphQL-core,
22-
which is up-to-date with GraphQL.js version 17.0.0a4.
21+
You can also try out the latest alpha version 3.3.0a11 of GraphQL-core,
22+
which is up-to-date with GraphQL.js version 17.0.0a5.
2323
This new minor version of GraphQL-core supports Python versions 3.7 to 3.14.
2424

2525
Note that for various reasons, GraphQL-core does not use SemVer like GraphQL.js.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
# The short X.Y version.
6363
# version = '3.3'
6464
# The full version, including alpha/beta/rc tags.
65-
version = release = "3.3.0a10"
65+
version = release = "3.3.0a11"
6666

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

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "graphql-core"
3-
version = "3.3.0a10"
3+
version = "3.3.0a11"
44
description = "GraphQL-core is a Python port of GraphQL.js, the JavaScript reference implementation for GraphQL."
55
readme = "README.md"
66
requires-python = ">=3.7"
@@ -50,7 +50,7 @@ test = [
5050
"pytest-timeout>=2.4",
5151
"pytest-codspeed>=3.1; python_version>='3.9'",
5252
"pytest-codspeed>=2.2,<3; python_version<'3.8'",
53-
"tox>=4.31; python_version>='3.10'",
53+
"tox>=4.32; python_version>='3.10'",
5454
"tox>=4.24; python_version>='3.8' and python_version<'3.10'",
5555
"tox>=3.28,<4; python_version<'3.8'",
5656
]

src/graphql/version.py

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

1010

11-
version = "3.3.0a10"
11+
version = "3.3.0a11"
1212

13-
version_js = "17.0.0a4"
13+
version_js = "17.0.0a5"
1414

1515

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

0 commit comments

Comments
 (0)