From 7dbfd070d606d79ca07bb7251a48f5d9e5a04c04 Mon Sep 17 00:00:00 2001 From: Christoph Zwerschke Date: Sat, 21 Mar 2020 20:28:13 +0100 Subject: [PATCH] Prepare version 3.1.0b2 --- .bumpversion.cfg | 2 +- README.md | 7 ++++++- docs/conf.py | 2 +- pyproject.toml | 2 +- src/graphql/version.py | 2 +- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4c8846cb..bf7e5dbc 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.1.0b1 +current_version = 3.1.0b2 commit = False tag = False diff --git a/README.md b/README.md index cda2af48..24613d42 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,12 @@ a query language for APIs created by Facebook. The current stable version 3.0.3 of GraphQL-core is up-to-date with GraphQL.js version 14.6.0. -An extensive test suite with over 2100 unit tests and 100% coverage also replicates the test suite of GraphQL.js, making sure this port is reliable and compatible with GraphQL.js. +The latest beta version 3.1.0b1 of GraphQL-core is up-to-date with +GraphQL.js version 15.0.0rc2. + +An extensive test suite with over 2100 unit tests and 100% coverage +also replicates the test suite of GraphQL.js, making sure this port +is reliable and compatible with GraphQL.js. ## Documentation diff --git a/docs/conf.py b/docs/conf.py index f768504d..12de05d3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -61,7 +61,7 @@ # The short X.Y version. # version = '3.1' # The full version, including alpha/beta/rc tags. -version = release = '3.1.0b1' +version = release = '3.1.0b2' # 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 f6d3c2f8..58662210 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "graphql-core" -version = "3.1.0b1" +version = "3.1.0b2" 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 bb20c533..22689fa2 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.1.0b1" +version = "3.1.0b2" version_js = "15.0.0c2"