Skip to content

Commit 66e5ae9

Browse files
committed
Release v3.2.0, matching GraphQL.js v16.2.0
Replicates graphql/graphql-js@3ab82f4
1 parent c2e2e2c commit 66e5ae9

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.2.0rc5
2+
current_version = 3.2.0
33
commit = False
44
tag = False
55

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ a query language for APIs created by Facebook.
1212
[![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/)
1313
[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
1414

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

1717
An extensive test suite with over 2300 unit tests and 100% coverage comprises a
1818
replication of the complete test suite of GraphQL.js, making sure this port is
1919
reliable and compatible with GraphQL.js.
2020

21-
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.
21+
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.
2222

2323

2424
## Documentation

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
# version = '3.2'
6363
# The full version, including alpha/beta/rc tags.
64-
version = release = '3.2.0rc5'
64+
version = release = '3.2.0'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# 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.2.0rc5"
3+
version = "3.2.0"
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
@@ -4,9 +4,9 @@
44
__all__ = ["version", "version_info", "version_js", "version_info_js"]
55

66

7-
version = "3.2.0rc5"
7+
version = "3.2.0"
88

9-
version_js = "16.1.0"
9+
version_js = "16.2.0"
1010

1111

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

0 commit comments

Comments
 (0)