Skip to content

Commit

Permalink
Merge pull request #33 from tartiflette/bubu/release_0.8.2
Browse files Browse the repository at this point in the history
Update to 0.12.x branch of Tartiflette.
  • Loading branch information
abusi authored Jul 4, 2019
2 parents 5ebda4c + f43c443 commit 4068332
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
7 changes: 7 additions & 0 deletions changelogs/0.8.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# [0.8.2] -- 2019-07-03

## Changed

- Update dev dependancies
- Update to tartiflette 0.12.x

2 changes: 0 additions & 2 deletions changelogs/next.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,4 @@

## Changed

- Update dev dependancies

## Fixed
2 changes: 1 addition & 1 deletion examples/aiohttp/starwars/starwars/resolvers/resolvers.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import asyncio
from tartiflette.resolver import Resolver
from tartiflette import Resolver

_LUKE = {
"type": "Human",
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"isort==4.3.21",
]

_VERSION = "0.8.1"
_VERSION = "0.8.2"

_PACKAGES = find_packages(exclude=["tests*"])

Expand All @@ -35,7 +35,7 @@
],
keywords="api graphql protocol api rest relay tartiflette dailymotion",
packages=_PACKAGES,
install_requires=["aiohttp<3.6.0,>=3.5.4", "tartiflette<0.12.0,>=0.11.0"],
install_requires=["aiohttp<3.6.0,>=3.5.4", "tartiflette<0.13.0,>=0.12.0"],
tests_require=_TEST_REQUIRE,
extras_require={"test": _TEST_REQUIRE},
include_package_data=True,
Expand Down
3 changes: 1 addition & 2 deletions tests/functional/test_register_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@

from aiohttp import web

from tartiflette import Resolver, create_engine
from tartiflette.engine import Engine
from tartiflette import Engine, Resolver, create_engine
from tartiflette_aiohttp import register_graphql_handlers


Expand Down

0 comments on commit 4068332

Please sign in to comment.