Skip to content

Commit

Permalink
Bump to 0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Dec 2, 2016
1 parent a15efa1 commit 9371a75
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion aiopg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down

0 comments on commit 9371a75

Please sign in to comment.