From 97bcb2f7b0447d0417b7b7b831a0bed7982e79ec Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Thu, 11 Nov 2010 16:06:53 +0100 Subject: [PATCH] Added missing rst files to reference index --- README.rst | 2 +- docs/reference/index.rst | 2 ++ kombu/__init__.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 50ab1dbc..76a1a387 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ kombu - AMQP Messaging Framework for Python ############################################# -:Version: 0.9.4 +:Version: 0.9.5 Introduction ------------ diff --git a/docs/reference/index.rst b/docs/reference/index.rst index e30f2e3a..bea0cf9f 100644 --- a/docs/reference/index.rst +++ b/docs/reference/index.rst @@ -32,3 +32,5 @@ kombu.abstract kombu.utils kombu.utils.functional + kombu.utils.compat + kombu.utils.finalize diff --git a/kombu/__init__.py b/kombu/__init__.py index 040cab2b..ebc89ede 100644 --- a/kombu/__init__.py +++ b/kombu/__init__.py @@ -1,5 +1,5 @@ """AMQP Messaging Framework for Python""" -VERSION = (0, 9, 4) +VERSION = (0, 9, 5) __version__ = ".".join(map(str, VERSION)) __author__ = "Ask Solem" __contact__ = "ask@celeryproject.org"