From 60214c1521ba50b4db91a2b04749f0eb5d614257 Mon Sep 17 00:00:00 2001 From: Javier Collado Date: Thu, 4 May 2017 16:41:37 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.0=20=E2=86=92=200.3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HISTORY.rst | 7 +++++++ rabbithole/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 96f2762..ca6140e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -12,3 +12,10 @@ History * Make batcher size/time limit configurable. * Added test cases and documentation. + +0.3.0 (2017-05-04) +------------------ + +* Added new flexible configuration format based on the blocks and flows concept. +* Added query parameters support to SQL block. +* Update AMQP block to use a connnection URL instead of just the server address. diff --git a/rabbithole/__init__.py b/rabbithole/__init__.py index d24e59e..49ed580 100644 --- a/rabbithole/__init__.py +++ b/rabbithole/__init__.py @@ -9,4 +9,4 @@ __author__ = """Javier Collado""" __email__ = 'javier@gigaspaces.com' -__version__ = '0.2.0' +__version__ = '0.3.0' diff --git a/setup.cfg b/setup.cfg index 471d8ca..27f3d5b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0 +current_version = 0.3.0 commit = True tag = True diff --git a/setup.py b/setup.py index a5f09d7..4483644 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ def run_tests(self): setup( name='rabbithole', - version='0.2.0', + version='0.3.0', description="Store messages from an AMQP server into a SQL database", long_description=README + '\n\n' + HISTORY, author="Javier Collado",