From 90fb3e551e90385671354b319d7d7eec87088ba1 Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Sun, 27 Mar 2011 20:56:37 +0200 Subject: [PATCH] Bumps version to 1.0.0 and updates Changelog --- Changelog | 8 +++++++- README.rst | 2 +- sqlakombu/__init__.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Changelog b/Changelog index ab8d3cb..01e8c25 100644 --- a/Changelog +++ b/Changelog @@ -2,7 +2,13 @@ t================ Change history ================ -0.1.0 +1.0.0 +===== + +* ``transport_options`` argument to ``BrokerConnection`` is now passed to + ``create_engine``. + +0.9.0 ===== * Initial port diff --git a/README.rst b/README.rst index 2fbe159..26a42bc 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ kombu-sqlalchemy - Kombu transport using SQLAlchemy =================================================== -:version: 0.9.0 +:version: 1.0.0 Introduction ============ diff --git a/sqlakombu/__init__.py b/sqlakombu/__init__.py index d78a054..2bed368 100644 --- a/sqlakombu/__init__.py +++ b/sqlakombu/__init__.py @@ -1,5 +1,5 @@ """Kombu transport using SQLAlchemy as the message store.""" -VERSION = (0, 9, 0) +VERSION = (1, 0, 0) __version__ = ".".join(map(str, VERSION)) __author__ = "Ask Solem" __contact__ = "ask@celeryproject.org"