Skip to content

Commit ac329dc

Browse files
committed
Version 1.0.4 is up-to-date with GraphQL.js 14.3.0
Replicates graphql/graphql-js@4bd1a11
1 parent b96a9d4 commit ac329dc

File tree

7 files changed

+41
-31
lines changed

7 files changed

+41
-31
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.3
2+
current_version = 1.0.4
33
commit = False
44
tag = False
55

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ cache:
1919
- $TRAVIS_BUILD_DIR/.tox
2020

2121
install:
22-
- pip install "poetry>=0.12.15"
22+
- pip install "poetry>=0.12.16"
2323
- poetry install
2424

2525
script:

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.3 of GraphQL-core-next is up-to-date with GraphQL.js version
16-
14.2.1. All parts of the API are covered by an extensive test suite of currently 1776
15+
The current version 1.0.4 of GraphQL-core-next is up-to-date with GraphQL.js version
16+
14.3.0. All parts of the API are covered by an extensive test suite of currently 1776
1717
unit tests.
1818

1919

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
# version = u'1.0'
6363
# The full version, including alpha/beta/rc tags.
64-
version = release = u'1.0.3'
64+
version = release = u'1.0.4'
6565

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

graphql/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
- :mod:`graphql/subscription`: Subscribe to data updates.
3838
"""
3939

40-
__version__ = "1.0.3"
41-
__version_js__ = "14.2.1"
40+
__version__ = "1.0.4"
41+
__version_js__ = "14.3.0"
4242

4343
# The primary entry point into fulfilling a GraphQL request.
4444

poetry.lock

Lines changed: 32 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "graphql-core-next"
3-
version = "1.0.3"
3+
version = "1.0.4"
44
description = """
55
GraphQL-core-next is a Python port of GraphQL.js,
66
the JavaScript reference implementation for GraphQL."""
@@ -47,6 +47,6 @@ bump2version = "^0.5"
4747
[tool.black]
4848
target-version = ['py36', 'py37', 'py38']
4949
[build-system]
50-
requires = ["poetry>=0.12.15"]
50+
requires = ["poetry>=0.12.16"]
5151
build-backend = "poetry.masonry.api"
5252

0 commit comments

Comments
 (0)