summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/changelog.rst9
-rw-r--r--factory/__init__.py2
2 files changed, 10 insertions, 1 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 561ce18..7d77f7f 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -2,6 +2,15 @@ ChangeLog
=========
+.. _v2.4.1:
+
+2.4.1 (2014-06-23)
+------------------
+
+*Bugfix:*
+
+ - Fix overriding deeply inherited attributes (set in one factory, overridden in a subclass, used in a sub-sub-class).
+
.. _v2.4.0:
2.4.0 (2014-06-21)
diff --git a/factory/__init__.py b/factory/__init__.py
index 1f06fba..8fc8ef8 100644
--- a/factory/__init__.py
+++ b/factory/__init__.py
@@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
-__version__ = '2.4.0'
+__version__ = '2.4.1'
__author__ = 'Raphaƫl Barrois <raphael.barrois+fboy@polytechnique.org>'