diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 23f3cc33..bf8ac5ad 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.4 +current_version = 3.0.6 commit = False tag = False diff --git a/README.md b/README.md index 4fec4b1f..5c0ff64f 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ a query language for APIs created by Facebook. [![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/) [![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black) -The current version 3.0.5 of GraphQL-core is up-to-date with GraphQL.js version 14.6.0. +The current version 3.0.6 of GraphQL-core is up-to-date with GraphQL.js version 14.7.0. All parts of the API are covered by an extensive test suite of nearly 2000 unit tests. diff --git a/docs/conf.py b/docs/conf.py index 7b85596e..a16b9375 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.5' +version = release = '3.0.6' # 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 db207e43..2287c7d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "graphql-core" -version = "3.0.5" +version = "3.0.6" 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 d0217aec..8766e7c7 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.5" +version = "3.0.6" -version_js = "14.6.0" +version_js = "14.7.0" _re_version = re.compile(r"(\d+)\.(\d+)\.(\d+)(\D*)(\d*)")