Skip to content

Commit dc2b39c

Browse files
authored
Merge pull request #75 from aio-libs/v0.5.1
0.5.1 release
2 parents 1fca7f2 + 5f27320 commit dc2b39c

4 files changed

Lines changed: 11 additions & 6 deletions

File tree

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,9 @@ before_install:
1313

1414
install:
1515
- pip install --upgrade pip setuptools wheel
16-
- pip install -Ur requirements-dev.txt
17-
- python setup.py develop
1816
# aiohttp git repo has only *.pyx files, so install cython too.
1917
- '[ -z "$MASTER_AIOHTTP" ] || pip install -U cython git+https://github.com/KeepSafe/aiohttp.git'
18+
- pip install -Ur requirements-dev.txt
2019

2120
before_script:
2221
# Start X-server for Selenium tests.

CHANGES.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
CHANGES
22
=======
33

4+
0.5.1 (2017-03-23)
5+
------------------
6+
7+
- Enforce ``aiohttp`` version to be less than 2.0.
8+
Newer ``aiohttp`` releases will be supported in the next release.
9+
410
0.5.0 (2016-11-18)
511
------------------
612

7-
- Fix compatibility with aiohttp 1.1
13+
- Fix compatibility with ``aiohttp`` 1.1
814

915

1016
0.4.0 (2016-04-04)

aiohttp_cors/__about__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
"""
2020

2121
__title__ = "aiohttp-cors"
22-
__version__ = "0.5.0"
22+
__version__ = "0.5.1"
2323
__author__ = "Vladimir Rutsky"
2424
__email__ = "[email protected]"
2525
__summary__ = "CORS support for aiohttp"
2626
__uri__ = "https://github.com/aio-libs/aiohttp-cors"
2727
__license__ = "Apache License, Version 2.0"
28-
__copyright__ = "2015, 2016 {}".format(__author__)
28+
__copyright__ = "2015, 2016, 2017 {}".format(__author__)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def read_file(filename):
6565
],
6666
test_suite="tests",
6767
install_requires=[
68-
"aiohttp>=1.1",
68+
"aiohttp>=1.1,<2.0",
6969
],
7070
extras_require={
7171
# TODO: Rich comparison in environment markers are broken in

0 commit comments

Comments
 (0)