Skip to content

Commit d8a8809

Browse files
committed
feincms3 0.9
1 parent ff286b5 commit d8a8809

2 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGELOG.rst

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,15 @@ Change log
55
`Next version`_
66
~~~~~~~~~~~~~~~
77

8+
`0.9`_ (2016-08-17)
9+
~~~~~~~~~~~~~~~~~~~
10+
811
- Dropped compatibility with Python 2.
9-
- Reset modifications to MPTT attributes inside ``AbstractPage.clean``
10-
so that moves are actually detected when ``save()``'ing for real.
12+
- Fixed ``AbstractPage.save()`` to actually detect page moves correctly
13+
again. Calling ``save()`` in a transaction was a bad idea because it
14+
messed with MPTT's bookkeeping information. Depending on the
15+
transaction isolation level going back to a clean slate *after*
16+
``clean()`` proved much harder than expected.
1117

1218

1319
`0.8`_ (2016-08-05)
@@ -129,4 +135,5 @@ Changed / Deprecated / Removed / Fixed / Security
129135
.. _0.6: https://github.com/matthiask/feincms3/compare/0.5...0.6
130136
.. _0.7: https://github.com/matthiask/feincms3/compare/0.6...0.7
131137
.. _0.8: https://github.com/matthiask/feincms3/compare/0.7...0.8
132-
.. _Next version: https://github.com/matthiask/feincms3/compare/0.8...master
138+
.. _0.9: https://github.com/matthiask/feincms3/compare/0.8...0.9
139+
.. _Next version: https://github.com/matthiask/feincms3/compare/0.9...master

feincms3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
VERSION = (0, 8, 1)
1+
VERSION = (0, 9, 0)
22
__version__ = '.'.join(map(str, VERSION))

0 commit comments

Comments
 (0)