summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2016-02-10 01:13:17 +0100
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2016-02-10 01:13:17 +0100
commit38f4a69db8f71cb52b9e7fd8d6e20e7d052a5b8d (patch)
tree3db80098ac5dca0dd49e124961f38e9ce6a02253
parent41560aa54e83fe539c0a5a1935bcaaf6363a522c (diff)
downloadfactory-boy-38f4a69db8f71cb52b9e7fd8d6e20e7d052a5b8d.tar
factory-boy-38f4a69db8f71cb52b9e7fd8d6e20e7d052a5b8d.tar.gz
Add ChangeLog for 2.6.1
-rw-r--r--docs/changelog.rst9
-rw-r--r--docs/recipes.rst2
2 files changed, 10 insertions, 1 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index fa542f4..dc3f967 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -1,6 +1,15 @@
ChangeLog
=========
+.. _v2.6.1:
+
+2.6.1 (2016-02-10)
+------------------
+
+*New:*
+
+ - :issue:`262`: Allow optional forced flush on SQLAlchemy, courtesy of `Minjung <https://github.com/Minjung>`_.
+
.. _v2.6.0:
2.6.0 (2015-10-20)
diff --git a/docs/recipes.rst b/docs/recipes.rst
index df86bac..a627e8b 100644
--- a/docs/recipes.rst
+++ b/docs/recipes.rst
@@ -88,7 +88,7 @@ When a :class:`UserFactory` is instantiated, factory_boy will call
Example: Django's Profile
-"""""""""""""""""""""""""
+~~~~~~~~~~~~~~~~~~~~~~~~~
Django (<1.5) provided a mechanism to attach a ``Profile`` to a ``User`` instance,
using a :class:`~django.db.models.OneToOneField` from the ``Profile`` to the ``User``.