diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 9fcebb83a..09868af43 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -45,6 +45,7 @@ Changelog * Fix: `decorate_urlpatterns` now uses `functools.update_wrapper` to keep view names and docstrings (Mario César) * Fix: StreamField block controls are no longer hidden by the StreamField menu when prepending a new block (Vincent Audebert) * Fix: Removed invalid use of `__` alias that prevented strings getting picked up for translation (Juha Yrjölä) + * Fix: Routable pages without a main view no longer raise a `TypeError` (Bojan Mihelac) 1.4.4 (xx.xx.2016) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index ff50270db..e86755032 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -135,6 +135,7 @@ Contributors * David Seddon * Brad Busenius * Juha Yrjölä +* Bojan Mihelac Translators =========== diff --git a/docs/releases/1.5.rst b/docs/releases/1.5.rst index 444951249..14590ab52 100644 --- a/docs/releases/1.5.rst +++ b/docs/releases/1.5.rst @@ -83,6 +83,7 @@ Bug fixes * ``decorate_urlpatterns`` now uses ``functools.update_wrapper`` to keep view names and docstrings (Mario César) * StreamField block controls are no longer hidden by the StreamField menu when prepending a new block (Vincent Audebert) * Removed invalid use of ``__`` alias that prevented strings getting picked up for translation (Juha Yrjölä) + * :ref:`Routable pages ` without a main view no longer raise a ``TypeError`` (Bojan Mihelac) Upgrade considerations