Skip to content

Commit 9ff7764

Browse files
committed
Merge pull request #34 from aio-libs/v0.3.0
release 0.3.0
2 parents b797726 + 83dd52e commit 9ff7764

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGES.rst

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

4-
0.3.0 (XXXX-XX-XX)
4+
0.3.0 (2016-02-06)
55
------------------
66

77
- Rename ``UrlDistatcherRouterAdapter`` to ``UrlDispatcherRouterAdapter``.
88

9+
- Set maximum supported ``aiohttp`` version to ``0.20.2``, see bug #30 for
10+
details.
11+
912
0.2.0 (2015-11-30)
1013
------------------
1114

aiohttp_cors/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"""
2020

2121
__title__ = "aiohttp_cors"
22-
__version__ = "0.3.0a0"
22+
__version__ = "0.3.0"
2323
__author__ = "Vladimir Rutsky"
2424
__email__ = "[email protected]"
2525
__summary__ = "CORS support for aiohttp"

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,10 @@ def read_file(filename):
6565
],
6666
test_suite="tests",
6767
install_requires=[
68-
"aiohttp>=0.18.0",
68+
# aiohttp_cors doesn't work with aiohttp >= 0.21, see issue #30 for
69+
# details.
70+
# It's tempting to specify "<0.21", but 0.21.0a0 >= 0.21.
71+
"aiohttp>=0.18.0,<=0.20.2",
6972
],
7073
extras_require={
7174
# TODO: Rich comparison in environment markers are broken in

0 commit comments

Comments
 (0)