From 27768d3faac5bb8ebb2c6a151a7192b7fa498f2f Mon Sep 17 00:00:00 2001 From: Christoph Zwerschke Date: Sat, 15 Jan 2022 14:12:53 +0100 Subject: [PATCH] Pre-release v3.2.0rc5 matching GraphQL.js 16.1.0 --- .bumpversion.cfg | 2 +- docs/conf.py | 4 ++-- pyproject.toml | 2 +- src/graphql/version.py | 4 ++-- tests/language/test_lexer.py | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 5630c2e2..7c41643e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.2.0rc4 +current_version = 3.2.0rc5 commit = False tag = False diff --git a/docs/conf.py b/docs/conf.py index b626ae4f..0a08de84 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,7 +51,7 @@ # General information about the project. project = 'GraphQL-core 3' -copyright = '2021, Christoph Zwerschke' +copyright = '2022, Christoph Zwerschke' author = 'Christoph Zwerschke' # The version info for the project you're documenting, acts as replacement for @@ -61,7 +61,7 @@ # The short X.Y version. # version = '3.2' # The full version, including alpha/beta/rc tags. -version = release = '3.2.0rc4' +version = release = '3.2.0rc5' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyproject.toml b/pyproject.toml index 580d5b5b..83af06b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "graphql-core" -version = "3.2.0rc4" +version = "3.2.0rc5" description = """ GraphQL-core is a Python port of GraphQL.js, the JavaScript reference implementation for GraphQL.""" diff --git a/src/graphql/version.py b/src/graphql/version.py index eaa476c1..26d45f4c 100644 --- a/src/graphql/version.py +++ b/src/graphql/version.py @@ -4,9 +4,9 @@ __all__ = ["version", "version_info", "version_js", "version_info_js"] -version = "3.2.0rc4" +version = "3.2.0rc5" -version_js = "16.0.1" +version_js = "16.1.0" _re_version = re.compile(r"(\d+)\.(\d+)\.(\d+)(\D*)(\d*)") diff --git a/tests/language/test_lexer.py b/tests/language/test_lexer.py index 00270bd4..a1ac5abf 100644 --- a/tests/language/test_lexer.py +++ b/tests/language/test_lexer.py @@ -81,8 +81,8 @@ def errors_respect_whitespace(): GraphQL request:3:2 2 | - 3 | ~ - | ^ + 3 | ~ + | ^ 4 | """ )