From 35fde8d8537adeb9cf2cff67ce47090b22f35f9b Mon Sep 17 00:00:00 2001 From: Carl Oscar Aaro Date: Tue, 16 Jan 2018 08:41:20 +0100 Subject: [PATCH] 0.6.5 --- CHANGES.rst | 6 ++++++ requirements.txt | 4 ++-- setup.py | 4 ++-- tomodachi/__version__.py | 2 +- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index de6531482..331c1141c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,12 @@ Changes ======= +0.6.5 (2018-01-16) +------------------ + +- Updated `aiohttp` to latest version which solves incompabilities with `yarl`. + + 0.6.4 (2018-01-15) ------------------ diff --git a/requirements.txt b/requirements.txt index 48bfb7663..90fc2855a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ aioamqp==0.10.0 aiobotocore==0.5.2 -aiohttp==2.3.7 +aiohttp==2.3.8 async-timeout==2.0.0 botocore==1.7.40 chardet==3.0.4 @@ -23,4 +23,4 @@ six==1.11.0 tzlocal==1.5.1 ujson==1.35 uvloop==0.9.1 -yarl==0.18.0 +yarl==1.0.0 diff --git a/setup.py b/setup.py index a5745b618..9a087e6dc 100644 --- a/setup.py +++ b/setup.py @@ -10,8 +10,8 @@ 'uvloop>=0.8.1', 'aiobotocore>=0.5.1, <0.6.0', 'tzlocal>=1.4', - 'aiohttp>=2.3.2, <2.4.0', - 'yarl>=0.16.0, <1.0.0' + 'aiohttp>=2.3.8, <2.4.0', + 'yarl>=1.0.0' ] PY_VER = sys.version_info diff --git a/tomodachi/__version__.py b/tomodachi/__version__.py index d2418770b..9140594e3 100644 --- a/tomodachi/__version__.py +++ b/tomodachi/__version__.py @@ -1,4 +1,4 @@ -__version__ = '0.6.4' +__version__ = '0.6.5' if __name__ == "__main__": print(__version__)