From 9f643c3e0f285c2349269b35052241ae6c4da3b0 Mon Sep 17 00:00:00 2001 From: Nikolay Novik Date: Fri, 23 Feb 2018 21:47:35 +0200 Subject: [PATCH] update changes.txt --- CHANGES.txt | 6 ++++++ aioodbc/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index c155f11..8650306 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,12 +1,18 @@ Changes ------- +0.3.0 (2018-02-23) +^^^^^^^^^^^^^^^^^^ +* Added optional pool connections recycling #167 (thanks @drpoggi) + + 0.2.0 (2017-06-24) ^^^^^^^^^^^^^^^^^^ * Fixed Cursor.execute returns a pyodbc.Cursor instead of itself #114 * Fixed __aiter__ to not be awaitable for python>=3.5.2 #113 * Tests now using aiodocker #106 + 0.1.0 (2017-04-30) ^^^^^^^^^^^^^^^^^^ * Fixed project version diff --git a/aioodbc/__init__.py b/aioodbc/__init__.py index cc2cfc2..098cfcb 100644 --- a/aioodbc/__init__.py +++ b/aioodbc/__init__.py @@ -5,7 +5,7 @@ from .pool import create_pool, Pool -__version__ = '0.2.0' +__version__ = '0.3.0' __all__ = ['connect', 'Connection', 'create_pool', 'Pool', 'dataSources'] (connect, Connection, create_pool, Pool) # pyflakes