Skip to content

Commit

Permalink
Prepare bugfix release
Browse files Browse the repository at this point in the history
Cito committed May 18, 2020
1 parent 2a034ed commit d90bf99
Showing 6 changed files with 140 additions and 150 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ a query language for APIs created by Facebook.
[![Python 3 Status](https://pyup.io/repos/github/graphql-python/graphql-core/python-3-shield.svg)](https://pyup.io/repos/github/graphql-python/graphql-core/)
[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)

The current version 3.0.4 of GraphQL-core is up-to-date with GraphQL.js version 14.6.0.
The current version 3.0.5 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 of nearly 2000 unit tests.

2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
@@ -61,7 +61,7 @@
# The short X.Y version.
# version = '3.0'
# The full version, including alpha/beta/rc tags.
version = release = '3.0.4'
version = release = '3.0.5'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
270 changes: 130 additions & 140 deletions poetry.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "graphql-core"
version = "3.0.4"
version = "3.0.5"
description = """
GraphQL-core is a Python port of GraphQL.js,
the JavaScript reference implementation for GraphQL."""
@@ -33,10 +33,10 @@ python = "^3.6"

[tool.poetry.dev-dependencies]
pytest = "^5.4"
pytest-asyncio = ">=0.10,<1"
pytest-asyncio = ">=0.12,<1"
pytest-benchmark = "^3.2"
pytest-cov = "^2.8"
pytest-describe = ">=0.12,<1"
pytest-describe = "^1.0"
black = "19.10b0"
flake8 = "^3.7"
mypy = "0.770"
@@ -45,7 +45,7 @@ sphinx = "^2.4"
sphinx_rtd_theme = ">=0.4,<1"
check-manifest = "0.40"
bump2version = ">=1.0,<2"
tox = "^3.14"
tox = "^3.15"

[tool.black]
target-version = ['py36', 'py37', 'py38']
2 changes: 1 addition & 1 deletion src/graphql/version.py
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
__all__ = ["version", "version_info", "version_js", "version_info_js"]


version = "3.0.4"
version = "3.0.5"

version_js = "14.6.0"

6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ commands =

[testenv:flake8]
basepython = python3.7
deps = flake8>=3.7,<4
deps = flake8>=3.8,<4
commands =
flake8 src tests setup.py

@@ -40,10 +40,10 @@ setenv =
PYTHONPATH = {toxinidir}
deps =
pytest>=5.4,<5.5
pytest-asyncio>=0.10,<1
pytest-asyncio>=0.12,<1
pytest-benchmark>=3.2,<4
pytest-cov>=2.8,<3
pytest-describe>=0.12,<1
pytest-describe>=1,<2
commands =
poetry install
poetry run pytest tests {posargs}

0 comments on commit d90bf99

Please sign in to comment.