Skip to content

Commit 52818aa

Browse files
committed
* Up-to-date with GraphQL.js 14.4.0
Replicates graphql/graphql-js@16f5ca0
1 parent 17ccd4a commit 52818aa

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.5
2+
current_version = 1.1.0b0
33
commit = False
44
tag = False
55

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ 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 version 1.0.5 of GraphQL-core-next is up-to-date with GraphQL.js version
16-
14.3.1. All parts of the API are covered by an extensive test suite of currently 1881
15+
The current version 1.1.0b0 of GraphQL-core-next is up-to-date with GraphQL.js version
16+
14.4.0. All parts of the API are covered by an extensive test suite of currently 1881
1717
unit tests.
1818

1919

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
# version = u'1.0'
62+
# version = u'1.1'
6363
# The full version, including alpha/beta/rc tags.
64-
version = release = u'1.0.5'
64+
version = release = u'1.1.0b0'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

graphql/version.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ def __str__(self):
1818
return v
1919

2020

21-
version = "1.0.5"
21+
version = "1.1.0b0"
2222

23-
version_info = VersionInfo(1, 0, 5, "final", 0)
23+
version_info = VersionInfo(1, 1, 0, "beta", 0)
2424

25-
version_js = "14.3.1"
25+
version_js = "14.4.0"
2626

27-
version_info_js = VersionInfo(14, 3, 1, "final", 0)
27+
version_info_js = VersionInfo(14, 4, 0, "final", 0)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "graphql-core-next"
3-
version = "1.0.5"
3+
version = "1.1.0b0"
44
description = """
55
GraphQL-core-next is a Python port of GraphQL.js,
66
the JavaScript reference implementation for GraphQL."""

0 commit comments

Comments
 (0)