diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2013-09-17 01:12:48 +0200 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2013-09-17 01:12:48 +0200 |
commit | 7fe9dcaa8494e73d57613d1288b4f86c4cba5bf0 (patch) | |
tree | 5f7c3728caeb67609be6e7ba17e03b2fa93dbc22 /docs | |
parent | a8742c973db224968b74bb054027130b2ab458e0 (diff) | |
download | factory-boy-7fe9dcaa8494e73d57613d1288b4f86c4cba5bf0.tar factory-boy-7fe9dcaa8494e73d57613d1288b4f86c4cba5bf0.tar.gz |
Properly handle Sequence & inheritance (Closes #93).
There was also a nasty bug: with class FactoryB(FactoryA), FactoryB's sequence
counter started at the value of FactoryA's counter when FactoryB was first called.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/changelog.rst | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst index 326b245..25d6a06 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,15 +1,18 @@ ChangeLog ========= -.. _v2.1.3: +.. _v2.2.0: -2.1.3 (current) +2.2.0 (current) --------------- *Bugfix:* - Removed duplicated :class:`~factory.alchemy.SQLAlchemyModelFactory` lurking in :mod:`factory` (:issue:`83`) + - Properly handle sequences within object inheritance chains. + If FactoryA inherits from FactoryB, and their associated classes share the same link, + sequence counters will be shared (:issue:`93`) *New:* |