diff options
author | Raphaël Barrois <raphael.barrois@polyconseil.fr> | 2014-06-23 11:11:13 +0200 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polyconseil.fr> | 2014-06-23 11:11:13 +0200 |
commit | 87f8cc0cc0d2f48f489c81b8c93e8ab6de6cff26 (patch) | |
tree | cfde1710a17e03cddfa983aace007b08925f8cc9 | |
parent | e2ef7c96ed74b35b9dec75a7f222b6ffa9214c10 (diff) | |
download | factory-boy-v2.4.1.tar factory-boy-v2.4.1.tar.gz |
-rw-r--r-- | docs/changelog.rst | 9 | ||||
-rw-r--r-- | factory/__init__.py | 2 |
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>' |