Version bump to 1.3.1

This commit is contained in:
Matt Westcott 2016-01-05 15:26:17 +00:00
parent 8b8d8a14db
commit c01b892518
5 changed files with 22 additions and 2 deletions

View file

@ -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 <https://code.djangoproject.com/ticket/26034>)
1.3 (23.12.2015)
~~~~~~~~~~~~~~~~

15
docs/releases/1.3.1.rst Normal file
View file

@ -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 <https://code.djangoproject.com/ticket/26034>`_)

View file

@ -4,6 +4,7 @@ Release notes
.. toctree::
:maxdepth: 1
1.3.1
1.3
1.2
1.1

View file

@ -1,2 +1,2 @@
Django>=1.9,<1.10
wagtail==1.3
wagtail==1.3.1

View file

@ -1,4 +1,4 @@
__version__ = '1.3'
__version__ = '1.3.1'
default_app_config = 'wagtail.wagtailcore.apps.WagtailCoreAppConfig'