diff --git a/CHANGES.txt b/CHANGES.txt index 2782069e..f3a77af3 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,12 +1,12 @@ CHANGES ------- -0.13.0 (2016-11-XX) +0.13.0 (2016-12-02) ^^^^^^^^^^^^^^^^^^^ * Add `async with` support to `.begin_nested()` #208 -* Fix connection.cancel() #212 +* Fix connection.cancel() #212 #223 * Raise informative error on unexpected connection closing #191 diff --git a/aiopg/__init__.py b/aiopg/__init__.py index 76d99241..bf467c93 100644 --- a/aiopg/__init__.py +++ b/aiopg/__init__.py @@ -10,7 +10,7 @@ __all__ = ('connect', 'create_pool', 'Connection', 'Cursor', 'Pool', 'version', 'version_info', 'DEFAULT_TIMEOUT') -__version__ = '0.12.0' +__version__ = '0.13.0' version = __version__ + ' , Python ' + sys.version diff --git a/requirements.txt b/requirements.txt index b23eb548..bc823459 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,3 +14,4 @@ pytest-cov==2.4.0 pytest-sugar==0.7.1 pytest-timeout==1.2.0 sphinxcontrib-asyncio==0.2.0 +sqlalchemy==1.1.4 diff --git a/setup.py b/setup.py index 726fcb5a..94ae7e06 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ def read(f): return open(os.path.join(os.path.dirname(__file__), f)).read().strip() -extras_require = {'sa': ['sqlalchemy>=0.9'], } +extras_require = {'sa': ['sqlalchemy>=1.1'], } def read_version():