Skip to content

Commit

Permalink
Merge pull request #75 from aio-libs/v0.5.1
Browse files Browse the repository at this point in the history
0.5.1 release
  • Loading branch information
rutsky authored Mar 22, 2017
2 parents 1fca7f2 + 5f27320 commit dc2b39c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@ before_install:

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

before_script:
# Start X-server for Selenium tests.
Expand Down
8 changes: 7 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
CHANGES
=======

0.5.1 (2017-03-23)
------------------

- Enforce ``aiohttp`` version to be less than 2.0.
Newer ``aiohttp`` releases will be supported in the next release.

0.5.0 (2016-11-18)
------------------

- Fix compatibility with aiohttp 1.1
- Fix compatibility with ``aiohttp`` 1.1


0.4.0 (2016-04-04)
Expand Down
4 changes: 2 additions & 2 deletions aiohttp_cors/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
"""

__title__ = "aiohttp-cors"
__version__ = "0.5.0"
__version__ = "0.5.1"
__author__ = "Vladimir Rutsky"
__email__ = "vladimir@rutsky.org"
__summary__ = "CORS support for aiohttp"
__uri__ = "https://github.com/aio-libs/aiohttp-cors"
__license__ = "Apache License, Version 2.0"
__copyright__ = "2015, 2016 {}".format(__author__)
__copyright__ = "2015, 2016, 2017 {}".format(__author__)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def read_file(filename):
],
test_suite="tests",
install_requires=[
"aiohttp>=1.1",
"aiohttp>=1.1,<2.0",
],
extras_require={
# TODO: Rich comparison in environment markers are broken in
Expand Down

0 comments on commit dc2b39c

Please sign in to comment.