Skip to content

Commit

Permalink
Prepare version 3.1.0b0
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito committed Feb 10, 2020
1 parent a206db0 commit 93b02bc
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.1.0a0
current_version = 3.1.0b0
commit = False
tag = False

Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ 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 stable version 3.0.2 of GraphQL-core is up-to-date
with GraphQL.js version 14.6.0.
The current stable version 3.0.3 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
with over 2000 unit tests.
All parts of the API are covered by an extensive test suite with over 2000 unit tests.


## Documentation
Expand Down
8 changes: 4 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,17 @@

# 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
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
# version = '3.0'
# version = '3.1'
# The full version, including alpha/beta/rc tags.
version = release = '3.1.0a0'
version = release = '3.1.0b0'

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

# A shorter title for the navigation bar. Default is the same as html_title.
#
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "graphql-core"
version = "3.1.0a0"
version = "3.1.0b0"
description = """
GraphQL-core is a Python port of GraphQL.js,
the JavaScript reference implementation for GraphQL."""
Expand Down
2 changes: 1 addition & 1 deletion src/graphql/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__all__ = ["version", "version_info", "version_js", "version_info_js"]


version = "3.1.0a0"
version = "3.1.0b0"

version_js = "15.0.0c1"

Expand Down

0 comments on commit 93b02bc

Please sign in to comment.