Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito committed Sep 4, 2024
1 parent 0834a0e commit 96e2ec3
Show file tree
Hide file tree
Showing 5 changed files with 12 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.2.3
current_version = 3.2.4
commit = False
tag = False

Expand Down
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ a query language for APIs created by Facebook.
![Lint Status](https://github.com/graphql-python/graphql-core/actions/workflows/lint.yml/badge.svg)
[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)

The current version 3.2.3 of GraphQL-core is up-to-date with GraphQL.js version 16.6.0.
The current version 3.2.4 of GraphQL-core is up-to-date with GraphQL.js version 16.8.2.

An extensive test suite with over 2300 unit tests and 100% coverage comprises a
replication of the complete test suite of GraphQL.js, making sure this port is
Expand Down Expand Up @@ -196,6 +196,10 @@ Some restrictions (mostly in line with the design goals):
* supports asynchronous operations only via async.io
(does not support the additional executors in GraphQL-core)

Note that meanwhile we are using the amazing [ruff](https://docs.astral.sh/ruff/) tool
to both format and check the code of GraphQL-core 3,
in addition to using [mypy](https://mypy-lang.org/) as type checker.


## Integration with other libraries and roadmap

Expand All @@ -205,14 +209,12 @@ Some restrictions (mostly in line with the design goals):
also been created by Syrus Akbary, who meanwhile has handed over the maintenance
and future development to members of the GraphQL-Python community.

The current version 2 of Graphene is using Graphql-core 2 as core library for much of
the heavy lifting. Note that Graphene 2 is not compatible with GraphQL-core 3.
The new version 3 of Graphene will use GraphQL-core 3 instead of GraphQL-core 2.
Graphene 3 is now using Graphql-core 3 as core library for much of the heavy lifting.

* [Ariadne](https://github.com/mirumee/ariadne) is a Python library for implementing
GraphQL servers using schema-first approach created by Mirumee Software.

Ariadne is already using GraphQL-core 3 as its GraphQL implementation.
Ariadne is also using GraphQL-core 3 as its GraphQL implementation.

* [Strawberry](https://github.com/strawberry-graphql/strawberry), created by Patrick
Arminio, is a new GraphQL library for Python 3, inspired by dataclasses,
Expand All @@ -228,6 +230,7 @@ Changes are tracked as
## Credits and history

The GraphQL-core 3 library

* has been created and is maintained by Christoph Zwerschke
* uses ideas and code from GraphQL-core 2, a prior work by Syrus Akbary
* is a Python port of GraphQL.js which has been developed by Lee Byron and others
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
# The short X.Y version.
# version = '3.2'
# The full version, including alpha/beta/rc tags.
version = release = "3.2.3"
version = release = "3.2.4"

# 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.2.3"
version = "3.2.4"
description = """
GraphQL-core is a Python port of GraphQL.js,\
the JavaScript reference implementation for GraphQL."""
Expand Down
2 changes: 1 addition & 1 deletion src/graphql/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__all__ = ["version", "version_info", "version_js", "version_info_js"]


version = "3.2.3"
version = "3.2.4"

version_js = "16.8.2"

Expand Down

0 comments on commit 96e2ec3

Please sign in to comment.