From 0461e0c71918f80761785c376b876b913caddc31 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Fri, 18 Nov 2016 19:35:09 +0200 Subject: [PATCH] Bump to 0.5.0 --- CHANGES.rst | 4 +++- aiohttp_cors/__about__.py | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 24dc9d4..e3ba630 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,9 +1,11 @@ CHANGES ======= -0.5.0 (2016-XX-XX) +0.5.0 (2016-11-18) ------------------ +- Fix compatibility with aiohttp 1.1 + 0.4.0 (2016-04-04) ------------------ diff --git a/aiohttp_cors/__about__.py b/aiohttp_cors/__about__.py index ef5f995..6a0b376 100644 --- a/aiohttp_cors/__about__.py +++ b/aiohttp_cors/__about__.py @@ -19,10 +19,10 @@ """ __title__ = "aiohttp-cors" -__version__ = "0.5.0a0" +__version__ = "0.5.0" __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 {}".format(__author__) +__copyright__ = "2015, 2016 {}".format(__author__)