diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 065f949259..4dd2ce3309 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -38,6 +38,7 @@ Changelog * Fix: WagtailTestUtils now works correctly on custom user models without a ``username`` field (Adam Bolfik) * Fix: Logging in to the admin as a user with valid credentials but no admin access permission now displays an error message, rather than rejecting the user silently * Fix: StreamBlock HTML rendering now handles non-ASCII characters correctly on Python 2 (Mikalai Radchuk) + * Fix: Fixed a bug preventing pages with a OneToOneField from being copied (Liam Brenner) 1.3.1 (05.01.2016) ~~~~~~~~~~~~~~~~~~ diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index d13f470f58..ec88761f27 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -109,6 +109,7 @@ Contributors * Adam Bolfik * Thomas Winter * Gareth Price +* Liam Brenner Translators =========== diff --git a/docs/releases/1.4.rst b/docs/releases/1.4.rst index e20a6fccfd..65b842745c 100644 --- a/docs/releases/1.4.rst +++ b/docs/releases/1.4.rst @@ -81,6 +81,7 @@ Bug fixes * WagtailTestUtils now works correctly on custom user models without a ``username`` field (Adam Bolfik) * Logging in to the admin as a user with valid credentials but no admin access permission now displays an error message, rather than rejecting the user silently * StreamBlock HTML rendering now handles non-ASCII characters correctly on Python 2 (Mikalai Radchuk) + * Fixed a bug preventing pages with a ``OneToOneField`` from being copied (Liam Brenner) Upgrade considerations