diff --git a/CHANGES.md b/CHANGES.md index f99aa9b..1284d21 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,10 @@ +Release 4.6.1 (Feb 5, 2023) +---------------------------- + +* Fix unescaped string representation of `AL_Node` models in the Django admin. + Thanks to goodguyandy for reporting the issue. +* Optimise `MP_Node.get_descendants` to avoid database queries when called on a leaf node. + Release 4.6 (Jan 2, 2023) ---------------------------- diff --git a/treebeard/__init__.py b/treebeard/__init__.py index 183f3ac..b2a0022 100644 --- a/treebeard/__init__.py +++ b/treebeard/__init__.py @@ -18,4 +18,4 @@ 13. git commit -m 'Start with ' 14. git push """ -__version__ = '4.6.0' +__version__ = '4.6.1'