Skip to content

Commit

Permalink
Release v3.2.0, matching GraphQL.js v16.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito committed Jan 15, 2022
1 parent c2e2e2c commit 66e5ae9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.2.0rc5
current_version = 3.2.0
commit = False
tag = False

Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -12,13 +12,13 @@ a query language for APIs created by Facebook.
[![Python 3 Status](https://pyup.io/repos/github/graphql-python/graphql-core/python-3-shield.svg)](https://pyup.io/repos/github/graphql-python/graphql-core/)
[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)

The current version 3.1.7 of GraphQL-core is up-to-date with GraphQL.js version 15.8.0.
The current version 3.2.0 of GraphQL-core is up-to-date with GraphQL.js version 16.2.0.

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
reliable and compatible with GraphQL.js.

Note that for various reasons, GraphQL-core does not use SemVer like GraphQL.js. Increases in the major version of GraphQL.js are reflected in the minor version of GraphQL-core instead. This means there can be breaking changes in the API when the minor version changes, and only patch releases are fully backward compatible. Therefore, we recommend something like `=~ 3.1.0` as version specifier when including GraphQL-core as a dependency.
Note that for various reasons, GraphQL-core does not use SemVer like GraphQL.js. Increases in the major version of GraphQL.js are reflected in the minor version of GraphQL-core instead. This means there can be breaking changes in the API when the minor version changes, and only patch releases are fully backward compatible. Therefore, we recommend something like `=~ 3.2.0` as version specifier when including GraphQL-core as a dependency.


## Documentation
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
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.0rc5'
version = release = '3.2.0'

# 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
@@ -1,6 +1,6 @@
[tool.poetry]
name = "graphql-core"
version = "3.2.0rc5"
version = "3.2.0"
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
Expand Up @@ -4,9 +4,9 @@
__all__ = ["version", "version_info", "version_js", "version_info_js"]


version = "3.2.0rc5"
version = "3.2.0"

version_js = "16.1.0"
version_js = "16.2.0"


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

0 comments on commit 66e5ae9

Please sign in to comment.