From 682e044d7d01c9265f3e67d2dc894090ef0ed575 Mon Sep 17 00:00:00 2001 From: Christoph Zwerschke Date: Sun, 26 Jan 2020 21:07:40 +0100 Subject: [PATCH] Version 3.0.2 is up-to-date with GraphQL.js 14.6.0 --- .bumpversion.cfg | 6 +++--- README.md | 4 ++-- docs/conf.py | 2 +- pyproject.toml | 2 +- src/graphql/version.py | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ed6e6759..1118ec65 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.1 +current_version = 3.0.2 commit = False tag = False @@ -8,8 +8,8 @@ search = version = "{current_version}" replace = version = "{new_version}" [bumpversion:file:docs/conf.py] -search = version = release = u'{current_version}' -replace = version = release = u'{new_version}' +search = version = release = '{current_version}' +replace = version = release = '{new_version}' [bumpversion:file:README.md] search = The current version {current_version} diff --git a/README.md b/README.md index ff1da19a..ebb956b4 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,8 @@ a query language for APIs created by Facebook. [![Python 3 Status](https://pyup.io/repos/github/graphql-python/graphql-core-next/python-3-shield.svg)](https://pyup.io/repos/github/graphql-python/graphql-core-next/) [![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black) -The current version 3.0.1 of GraphQL-core is up-to-date -with GraphQL.js version 14.5.8. +The current version 3.0.2 of GraphQL-core is up-to-date +with GraphQL.js version 14.6.0. All parts of the API are covered by an extensive test suite of currently 1991 unit tests. diff --git a/docs/conf.py b/docs/conf.py index d08dacec..55fec257 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -61,7 +61,7 @@ # The short X.Y version. # version = '3.0' # The full version, including alpha/beta/rc tags. -version = release = '3.0.1' +version = release = '3.0.2' # 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 22950980..bf610cee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "graphql-core" -version = "3.0.1" +version = "3.0.2" 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 b7be388a..47421552 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.0.1" +version = "3.0.2" -version_js = "14.5.8" +version_js = "14.6.0" _re_version = re.compile(r"(\d+)\.(\d+)\.(\d+)(\D*)(\d*)")