Skip to content

Commit

Permalink
Merge pull request #34 from aio-libs/v0.3.0
Browse files Browse the repository at this point in the history
release 0.3.0
  • Loading branch information
rutsky committed Feb 5, 2016
2 parents b797726 + 83dd52e commit 9ff7764
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
CHANGES
=======

0.3.0 (XXXX-XX-XX)
0.3.0 (2016-02-06)
------------------

- Rename ``UrlDistatcherRouterAdapter`` to ``UrlDispatcherRouterAdapter``.

- Set maximum supported ``aiohttp`` version to ``0.20.2``, see bug #30 for
details.

0.2.0 (2015-11-30)
------------------

Expand Down
2 changes: 1 addition & 1 deletion aiohttp_cors/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"""

__title__ = "aiohttp_cors"
__version__ = "0.3.0a0"
__version__ = "0.3.0"
__author__ = "Vladimir Rutsky"
__email__ = "[email protected]"
__summary__ = "CORS support for aiohttp"
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@ def read_file(filename):
],
test_suite="tests",
install_requires=[
"aiohttp>=0.18.0",
# aiohttp_cors doesn't work with aiohttp >= 0.21, see issue #30 for
# details.
# It's tempting to specify "<0.21", but 0.21.0a0 >= 0.21.
"aiohttp>=0.18.0,<=0.20.2",
],
extras_require={
# TODO: Rich comparison in environment markers are broken in
Expand Down

0 comments on commit 9ff7764

Please sign in to comment.