Skip to content

Commit 27768d3

Browse files
committed
Pre-release v3.2.0rc5 matching GraphQL.js 16.1.0
1 parent f0a968d commit 27768d3

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
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.0rc4
2+
current_version = 3.2.0rc5
33
commit = False
44
tag = False
55

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
# General information about the project.
5353
project = 'GraphQL-core 3'
54-
copyright = '2021, Christoph Zwerschke'
54+
copyright = '2022, Christoph Zwerschke'
5555
author = 'Christoph Zwerschke'
5656

5757
# The version info for the project you're documenting, acts as replacement for
@@ -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.0rc4'
64+
version = release = '3.2.0rc5'
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.0rc4"
3+
version = "3.2.0rc5"
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.0rc4"
7+
version = "3.2.0rc5"
88

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

1111

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

tests/language/test_lexer.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ def errors_respect_whitespace():
8181
8282
GraphQL request:3:2
8383
2 |
84-
3 | ~
85-
| ^
84+
3 | ~
85+
| ^
8686
4 |
8787
"""
8888
)

0 commit comments

Comments
 (0)