From 7aff9be4e98013cca7a8fab9360d5d33cae49d80 Mon Sep 17 00:00:00 2001 From: Christoph Zwerschke Date: Fri, 3 Apr 2020 16:53:13 +0200 Subject: [PATCH] Release as version 3.0.4 --- .bumpversion.cfg | 2 +- README.md | 3 +-- docs/conf.py | 4 ++-- pyproject.toml | 2 +- src/graphql/version.py | 2 +- 5 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 81bb3064..23f3cc33 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.3 +current_version = 3.0.4 commit = False tag = False diff --git a/README.md b/README.md index b8f4d931..4a3b4529 100644 --- a/README.md +++ b/README.md @@ -12,8 +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.3 of GraphQL-core is up-to-date -with GraphQL.js version 14.6.0. +The current version 3.0.4 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 nearly 2000 unit tests. diff --git a/docs/conf.py b/docs/conf.py index def4e470..2c5884a2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,7 +51,7 @@ # General information about the project. project = 'GraphQL-core 3' -copyright = '2019, Christoph Zwerschke' +copyright = '2020, 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.0' # The full version, including alpha/beta/rc tags. -version = release = '3.0.3' +version = release = '3.0.4' # 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 68c203c6..68b077b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "graphql-core" -version = "3.0.3" +version = "3.0.4" 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 f065f0b3..2cca6a72 100644 --- a/src/graphql/version.py +++ b/src/graphql/version.py @@ -4,7 +4,7 @@ __all__ = ["version", "version_info", "version_js", "version_info_js"] -version = "3.0.3" +version = "3.0.4" version_js = "14.6.0"