diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 96bc6591e..f6a8f8716 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,10 @@ Changelog ========= +1.3.1 (05.01.2016) +~~~~~~~~~~~~~~~~~~ +* Fix: Applied workaround for failing wagtailimages migration on Django 1.8.8 / 1.9.1 with Postgres (see ) + 1.3 (23.12.2015) ~~~~~~~~~~~~~~~~ diff --git a/docs/releases/1.3.1.rst b/docs/releases/1.3.1.rst new file mode 100644 index 000000000..c64493df0 --- /dev/null +++ b/docs/releases/1.3.1.rst @@ -0,0 +1,15 @@ +=========================== +Wagtail 1.3.1 release notes +=========================== + +.. contents:: + :local: + :depth: 1 + +What's changed +============== + +Bug fixes +~~~~~~~~~ + +* Applied workaround for failing ``wagtailimages`` migration on Django 1.8.8 / 1.9.1 with Postgres (see `Django issue #26034 `_) diff --git a/docs/releases/index.rst b/docs/releases/index.rst index d6a666755..31a10dbd0 100644 --- a/docs/releases/index.rst +++ b/docs/releases/index.rst @@ -4,6 +4,7 @@ Release notes .. toctree:: :maxdepth: 1 + 1.3.1 1.3 1.2 1.1 diff --git a/wagtail/project_template/requirements.txt b/wagtail/project_template/requirements.txt index fc764e088..ba93debff 100644 --- a/wagtail/project_template/requirements.txt +++ b/wagtail/project_template/requirements.txt @@ -1,2 +1,2 @@ Django>=1.9,<1.10 -wagtail==1.3 +wagtail==1.3.1 diff --git a/wagtail/wagtailcore/__init__.py b/wagtail/wagtailcore/__init__.py index 5501abe0f..a9d336d45 100644 --- a/wagtail/wagtailcore/__init__.py +++ b/wagtail/wagtailcore/__init__.py @@ -1,4 +1,4 @@ -__version__ = '1.3' +__version__ = '1.3.1' default_app_config = 'wagtail.wagtailcore.apps.WagtailCoreAppConfig'