Skip to content

Commit 7ad2484

Browse files
committed
Bump version
1 parent a87be5d commit 7ad2484

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
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.0a9
2+
current_version = 3.3.0a10
33
commit = False
44
tag = False
55

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ a query language for APIs created by Facebook.
1111
[![CodSpeed](https://img.shields.io/endpoint?url=https://codspeed.io/badge.json)](https://codspeed.io/graphql-python/graphql-core)
1212
[![Code style](https://img.shields.io/badge/code%20style-ruff-000000.svg)](https://github.com/astral-sh/ruff)
1313

14-
An extensive test suite with over 2500 unit tests and 100% coverage replicates the
14+
An extensive test suite with over 2600 unit tests and 100% coverage replicates the
1515
complete test suite of GraphQL.js, ensuring that this port is reliable and compatible
1616
with GraphQL.js.
1717

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.0a9 of GraphQL-core,
21+
You can also try out the latest alpha version 3.3.0a10 of GraphQL-core,
2222
which is up-to-date with GraphQL.js version 17.0.0a3.
2323
Please note that this new minor version of GraphQL-core does not support
2424
Python 3.6 anymore.

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.0a9"
65+
version = release = "3.3.0a10"
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 & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "graphql-core"
3-
version = "3.3.0a9"
3+
version = "3.3.0a10"
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"
@@ -31,6 +31,7 @@ Homepage = "https://github.com/graphql-python/graphql-core"
3131
Repository = "https://github.com/graphql-python/graphql-core"
3232
Documentation = "https://graphql-core-3.readthedocs.io/"
3333
Changelog = "https://github.com/graphql-python/graphql-core/releases"
34+
3435
[dependency-groups]
3536
test = [
3637
"anyio>=3.7.1",
@@ -48,15 +49,13 @@ test = [
4849
"tox>=4.24; python_version>='3.8'",
4950
"tox>=3.28,<4; python_version<'3.8'",
5051
]
51-
5252
lint = [
5353
"ruff>=0.13,<0.14",
5454
"mypy>=1.18; python_version>='3.9'",
5555
"mypy~=1.14; python_version>='3.8' and python_version<'3.9'",
5656
"mypy~=1.4; python_version<'3.8'",
5757
"bump2version>=1,<2",
5858
]
59-
6059
doc = [
6160
"sphinx>=7,<9; python_version>='3.8'",
6261
"sphinx>=4,<6; python_version<'3.8'",
@@ -207,7 +206,6 @@ ignore = [
207206
"S102", # allow use of exec
208207
]
209208

210-
211209
[tool.ruff.lint.flake8-quotes]
212210
inline-quotes = "double"
213211

src/graphql/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
__all__ = ["version", "version_info", "version_info_js", "version_js"]
99

1010

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

1313
version_js = "17.0.0a3"
1414

0 commit comments

Comments
 (0)