Skip to content

Commit 9371a75

Browse files
committed
Bump to 0.13
1 parent a15efa1 commit 9371a75

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGES.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
CHANGES
22
-------
33

4-
0.13.0 (2016-11-XX)
4+
0.13.0 (2016-12-02)
55
^^^^^^^^^^^^^^^^^^^
66

77
* Add `async with` support to `.begin_nested()` #208
88

9-
* Fix connection.cancel() #212
9+
* Fix connection.cancel() #212 #223
1010

1111
* Raise informative error on unexpected connection closing #191
1212

aiopg/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
__all__ = ('connect', 'create_pool', 'Connection', 'Cursor', 'Pool',
1111
'version', 'version_info', 'DEFAULT_TIMEOUT')
1212

13-
__version__ = '0.12.0'
13+
__version__ = '0.13.0'
1414

1515
version = __version__ + ' , Python ' + sys.version
1616

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ pytest-cov==2.4.0
1414
pytest-sugar==0.7.1
1515
pytest-timeout==1.2.0
1616
sphinxcontrib-asyncio==0.2.0
17+
sqlalchemy==1.1.4

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
def read(f):
1616
return open(os.path.join(os.path.dirname(__file__), f)).read().strip()
1717

18-
extras_require = {'sa': ['sqlalchemy>=0.9'], }
18+
extras_require = {'sa': ['sqlalchemy>=1.1'], }
1919

2020

2121
def read_version():

0 commit comments

Comments
 (0)