From 913a6380c2fe7075f4daf6ab61d9a2ca2bba6ce0 Mon Sep 17 00:00:00 2001 From: Evgeny Sizikov Date: Wed, 19 Oct 2016 17:55:13 +0700 Subject: [PATCH] Bumped release version 0.0.4 --- HISTORY.rst | 5 +++++ README.rst | 2 +- nhaystack/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 69ee1ea..3a4b64f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ History ------- +0.0.4 (2016-10-19) +++++++++++++++++++ +* [core] Fixed elif/if bug for a case when the same model should be registered in both + INDEXED_MODELS and SENDER_MAP for a signal processor. + 0.0.3 (2016-10-14) ++++++++++++++++++ * [core] Added signals.ModelSignalProcessorMixin.teardown() to be able to diff --git a/README.rst b/README.rst index 4b50378..a518aa3 100644 --- a/README.rst +++ b/README.rst @@ -3,7 +3,7 @@ nhaystack ========= -:Version: 0.0.3 +:Version: 0.0.4 :Author: Noveo Group (http://noveogroup.com/) Improvements, optimizations and back-ports for Haystack (with Elastic biases). diff --git a/nhaystack/__init__.py b/nhaystack/__init__.py index 8fc5cf6..9d0284b 100644 --- a/nhaystack/__init__.py +++ b/nhaystack/__init__.py @@ -3,5 +3,5 @@ __title__ = 'nhaystack' __author__ = 'Noveo Group' -VERSION = (0, 0, 3) # PEP 386 +VERSION = (0, 0, 4) # PEP 386 __version__ = '.'.join(str(x) for x in VERSION)