Skip to content

Commit cbf94df

Browse files
committed
Bump version
Replicates graphql/graphql-js@b093768
1 parent 0d6f2f2 commit cbf94df

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
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.0a11
2+
current_version = 3.3.0a12
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.7 of GraphQL-core is up-to-date with GraphQL.js
1919
version 16.9.0 and supports Python versions 3.7 to 3.14.
2020

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.
21+
You can also try out the latest alpha version 3.3.0a12 of GraphQL-core,
22+
which is up-to-date with GraphQL.js version 17.0.0a7.
2323
This new minor version of GraphQL-core also supports Python versions 3.10 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
@@ -52,7 +52,7 @@
5252
# The short X.Y version.
5353
# version = '3.3'
5454
# The full version, including alpha/beta/rc tags.
55-
version = release = "3.3.0a11"
55+
version = release = "3.3.0a12"
5656

5757
# The language for content autogenerated by Sphinx. Refer to documentation
5858
# 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
[project]
22
name = "graphql-core"
3-
version = "3.3.0a11"
3+
version = "3.3.0a12"
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.10"

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.0a11"
11+
version = "3.3.0a12"
1212

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

1515

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

0 commit comments

Comments
 (0)