Skip to content

Commit 93b02bc

Browse files
committed
Prepare version 3.1.0b0
1 parent a206db0 commit 93b02bc

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.1.0a0
2+
current_version = 3.1.0b0
33
commit = False
44
tag = False
55

README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,10 @@ a query language for APIs created by Facebook.
1212
[![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/)
1313
[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
1414

15-
The current stable version 3.0.2 of GraphQL-core is up-to-date
16-
with GraphQL.js version 14.6.0.
15+
The current stable version 3.0.3 of GraphQL-core is up-to-date with
16+
GraphQL.js version 14.6.0.
1717

18-
All parts of the API are covered by an extensive test suite
19-
with over 2000 unit tests.
18+
All parts of the API are covered by an extensive test suite with over 2000 unit tests.
2019

2120

2221
## Documentation

docs/conf.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,17 @@
5151

5252
# General information about the project.
5353
project = 'GraphQL-core 3'
54-
copyright = '2019, Christoph Zwerschke'
54+
copyright = '2020, Christoph Zwerschke'
5555
author = 'Christoph Zwerschke'
5656

5757
# The version info for the project you're documenting, acts as replacement for
5858
# |version| and |release|, also used in various other places throughout the
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
# version = '3.0'
62+
# version = '3.1'
6363
# The full version, including alpha/beta/rc tags.
64-
version = release = '3.1.0a0'
64+
version = release = '3.1.0b0'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.
@@ -180,7 +180,7 @@
180180
# The name for this set of Sphinx documents.
181181
# "<project> v<release> documentation" by default.
182182
#
183-
# html_title = 'GraphQL-core v3.0.0'
183+
# html_title = 'GraphQL-core v3.1.0'
184184

185185
# A shorter title for the navigation bar. Default is the same as html_title.
186186
#

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "graphql-core"
3-
version = "3.1.0a0"
3+
version = "3.1.0b0"
44
description = """
55
GraphQL-core is a Python port of GraphQL.js,
66
the JavaScript reference implementation for GraphQL."""

src/graphql/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
__all__ = ["version", "version_info", "version_js", "version_info_js"]
55

66

7-
version = "3.1.0a0"
7+
version = "3.1.0b0"
88

99
version_js = "15.0.0c1"
1010

0 commit comments

Comments
 (0)