Skip to content

Commit 1428d47

Browse files
authored
document pool_recycle and bump version (#383)
1 parent 22e5a26 commit 1428d47

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

CHANGES.txt

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

4+
0.13.1 (2017-09-10)
5+
^^^^^^^^^^^^^^^^^^^
6+
7+
* Added connection poll recycling logic #373
8+
9+
410
0.13.0 (2016-12-02)
511
^^^^^^^^^^^^^^^^^^^
612

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.13.0'
13+
__version__ = '0.13.1'
1414

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

docs/core.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -718,6 +718,10 @@ The basic usage is::
718718
created connection. May be used for setting up connection level
719719
state like client encoding etc.
720720

721+
:param float pool_recycle: number of seconds after which connection
722+
is recycled, helps to deal with stale connections in pool, default
723+
value is ``-1``, means recycling logic is disabled.
724+
721725
:return: :class:`Pool` instance.
722726

723727

0 commit comments

Comments
 (0)