Skip to content

Commit 44334f3

Browse files
committed
Bump patch version and update README
1 parent 651ca5c commit 44334f3

File tree

5 files changed

+9
-9
lines changed

5 files changed

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

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ 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 2200 unit tests and 100% coverage replicates the
14+
An extensive test suite with over 2500 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

18-
The current stable version 3.2.5 of GraphQL-core is up-to-date with GraphQL.js
18+
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.0a6 of GraphQL-core,
22-
which is up-to-date with GraphQL.js version 17.0.0a2.
21+
You can also try out the latest alpha version 3.3.0a7 of GraphQL-core,
22+
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.
2525

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# The short X.Y version.
6161
# version = '3.3'
6262
# The full version, including alpha/beta/rc tags.
63-
version = release = "3.3.0a6"
63+
version = release = "3.3.0a7"
6464

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

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

src/graphql/version.py

+2-2
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.0a6"
11+
version = "3.3.0a7"
1212

13-
version_js = "17.0.0a2"
13+
version_js = "17.0.0a3"
1414

1515

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

0 commit comments

Comments
 (0)