Skip to content

Commit

Permalink
Bump patch version and update README
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito committed Jan 26, 2025
1 parent 651ca5c commit 44334f3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.3.0a6
current_version = 3.3.0a7
commit = False
tag = False

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ a query language for APIs created by Facebook.
[![CodSpeed](https://img.shields.io/endpoint?url=https://codspeed.io/badge.json)](https://codspeed.io/graphql-python/graphql-core)
[![Code style](https://img.shields.io/badge/code%20style-ruff-000000.svg)](https://github.com/astral-sh/ruff)

An extensive test suite with over 2200 unit tests and 100% coverage replicates the
An extensive test suite with over 2500 unit tests and 100% coverage replicates the
complete test suite of GraphQL.js, ensuring that this port is reliable and compatible
with GraphQL.js.

The current stable version 3.2.5 of GraphQL-core is up-to-date with GraphQL.js
The current stable version 3.2.6 of GraphQL-core is up-to-date with GraphQL.js
version 16.8.2 and supports Python versions 3.6 to 3.13.

You can also try out the latest alpha version 3.3.0a6 of GraphQL-core,
which is up-to-date with GraphQL.js version 17.0.0a2.
You can also try out the latest alpha version 3.3.0a7 of GraphQL-core,
which is up-to-date with GraphQL.js version 17.0.0a3.
Please note that this new minor version of GraphQL-core does not support
Python 3.6 anymore.

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
# The short X.Y version.
# version = '3.3'
# The full version, including alpha/beta/rc tags.
version = release = "3.3.0a6"
version = release = "3.3.0a7"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "graphql-core"
version = "3.3.0a6"
version = "3.3.0a7"
description = """\
GraphQL-core is a Python port of GraphQL.js,\
the JavaScript reference implementation for GraphQL."""
Expand Down
4 changes: 2 additions & 2 deletions src/graphql/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
__all__ = ["version", "version_info", "version_info_js", "version_js"]


version = "3.3.0a6"
version = "3.3.0a7"

version_js = "17.0.0a2"
version_js = "17.0.0a3"


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

0 comments on commit 44334f3

Please sign in to comment.