From 430ee891a52d239adadf133d873fdca2a3fe009b Mon Sep 17 00:00:00 2001 From: Christoph Zwerschke Date: Fri, 23 Sep 2022 10:16:58 +0200 Subject: [PATCH] Release v3.2.3, matching GraphQL.js v16.6.0 Replicates graphql/graphql-js@3a51ecade74a0198847e8b1ab1bcdc129485b79b --- .bumpversion.cfg | 2 +- README.md | 2 +- docs/conf.py | 2 +- pyproject.toml | 2 +- src/graphql/version.py | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b7e42d6d..622cb571 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.2.2 +current_version = 3.2.3 commit = False tag = False diff --git a/README.md b/README.md index 110bcfd5..491efb37 100644 --- a/README.md +++ b/README.md @@ -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.2 of GraphQL-core is up-to-date with GraphQL.js version 16.5.0. +The current version 3.2.3 of GraphQL-core is up-to-date with GraphQL.js version 16.6.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 diff --git a/docs/conf.py b/docs/conf.py index d5eca20e..cc7b7713 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -61,7 +61,7 @@ # The short X.Y version. # version = '3.2' # The full version, including alpha/beta/rc tags. -version = release = '3.2.2' +version = release = '3.2.3' # 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 439a4256..4d298776 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "graphql-core" -version = "3.2.2" +version = "3.2.3" 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 32ceb8c7..4eff0901 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.2" +version = "3.2.3" -version_js = "16.5.0" +version_js = "16.6.0" _re_version = re.compile(r"(\d+)\.(\d+)\.(\d+)(\D*)(\d*)")