From 57157ab7f49d82ff9a6887afe12cf9b789cb0515 Mon Sep 17 00:00:00 2001 From: Danilo Herrera Date: Mon, 8 Jul 2019 22:21:50 +0100 Subject: [PATCH 1/3] Fix typo (#1028) --- docs/quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index be2a1c82..fa012971 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -103,7 +103,7 @@ For each **Field** in our **Schema**, we write a **Resolver** method to fetch da Schema Definition Language (SDL) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In the `GraphQL Schema Definition Language`_, we could describe the feilds defined by our example code as show below. +In the `GraphQL Schema Definition Language`_, we could describe the fields defined by our example code as show below. .. _GraphQL Schema Definition Language: https://graphql.org/learn/schema/ From 6fc1a8f79da884e4aea9035eb95de3f35f7ce828 Mon Sep 17 00:00:00 2001 From: Jonathan Kim Date: Mon, 15 Jul 2019 21:02:56 +0100 Subject: [PATCH 2/3] Upgrade graphql-relay (#1032) * Upgrade graphql-relay * Remove pypy3 test --- .travis.yml | 1 - setup.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 66cf76e0..40d0415e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,6 @@ python: - "3.5" - "3.6" - "3.7" - - "pypy3" install: - pip install tox tox-travis diff --git a/setup.py b/setup.py index 96004f08..1de8b968 100644 --- a/setup.py +++ b/setup.py @@ -86,7 +86,7 @@ setup( install_requires=[ "six>=1.10.0,<2", "graphql-core>=2.1,<3", - "graphql-relay>=0.4.5,<1", + "graphql-relay>=2,<3", "aniso8601>=3,<=6", ], tests_require=tests_require, From 167c8c203cc2607fd3b80359de4b6064ac2e5234 Mon Sep 17 00:00:00 2001 From: Jonathan Kim Date: Mon, 15 Jul 2019 21:09:41 +0100 Subject: [PATCH 3/3] Bump version --- graphene/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphene/__init__.py b/graphene/__init__.py index 8b2a090f..c79906f1 100644 --- a/graphene/__init__.py +++ b/graphene/__init__.py @@ -43,7 +43,7 @@ from .utils.resolve_only_args import resolve_only_args from .utils.module_loading import lazy_import -VERSION = (2, 1, 6, "final", 0) +VERSION = (2, 1, 7, "final", 0) __version__ = get_version(VERSION)