diff --git a/CHANGELOG.rst b/CHANGELOG.rst index beb3b03b..eecf22d0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,12 +1,13 @@ Changelog ========= -0.1.5 (XX-XX-XXXX) +0.1.5 (27-08-2017) ------------------ -- Added `appveyor` to the CI to ensure MSSQL compatibility -- Added a settings example file to the sandbox environment to ease the contribution setup -- Added documentation on ``Contributing to Wagtailtrans`` + - Added `appveyor` to the CI to ensure MSSQL compatibility + - Added a settings example file to the sandbox environment to ease the contribution setup + - Added documentation on ``Contributing to Wagtailtrans`` + - Fix: language admin view throwing an exception with ``WAGTAILTRANS_LANGUAGES_PER_SITE`` set to ``True`` 0.1.4 (03-07-2017) diff --git a/docs/source/releases/0.1.5.rst b/docs/source/releases/0.1.5.rst index 847efa38..d3fd6b33 100644 --- a/docs/source/releases/0.1.5.rst +++ b/docs/source/releases/0.1.5.rst @@ -1,6 +1,6 @@ -================================================= -Wagtailtrans 0.1.5 release notes - IN DEVELOPMENT -================================================= +================================ +Wagtailtrans 0.1.5 release notes +================================ .. contents:: :local: @@ -11,7 +11,7 @@ Wagtailtrans 0.1.5 release notes - IN DEVELOPMENT What is new ----------- - +This release mainly fixes a blocking issue and adds some convenience updates for development. Features ~~~~~~~~ @@ -19,7 +19,4 @@ Features - Added `appveyor` to the CI to ensure MSSQL compatibility - Added a settings example file to the sandbox environment to ease the contribution setup - Added documentation on ``Contributing to Wagtailtrans`` - ------------------------------- -Backwards incompatible changes ------------------------------- +- Fix: language admin view throwing an exception with ``WAGTAILTRANS_LANGUAGES_PER_SITE`` set to ``True`` diff --git a/src/wagtailtrans/__init__.py b/src/wagtailtrans/__init__.py index 0cefe506..4e59dbbf 100644 --- a/src/wagtailtrans/__init__.py +++ b/src/wagtailtrans/__init__.py @@ -2,7 +2,7 @@ default_app_config = 'wagtailtrans.apps.WagtailTransConfig' -VERSION = (0, 1, 5, 'dev0') +VERSION = (0, 1, 5, 'final') WAGTAILTRANS_TEMPLATE_DIR = path.join(path.dirname(__file__), 'templates')