Prepare for 0.8.1 release

pull/791/head v0.8.1
Matt Westcott 2014-11-05 22:05:48 +00:00
rodzic 8a3ccbef26
commit 48957a998f
5 zmienionych plików z 24 dodań i 2 usunięć

Wyświetl plik

@ -1,6 +1,10 @@
Changelog
=========
0.8.1 (05.11.2014)
~~~~~~~~~~~~~~~~~~
* Fixed a regression where images would fail to save when feature detection is active
0.8 (05.11.2014)
~~~~~~~~~~~~~~~~

Wyświetl plik

@ -0,0 +1,17 @@
===========================
Wagtail 0.8.1 release notes
===========================
.. contents::
:local:
:depth: 1
What's new
==========
Bug fixes
~~~~~~~~~
* Fixed a regression where images would fail to save when feature detection is active

Wyświetl plik

@ -5,6 +5,7 @@ Release notes
:maxdepth: 1
roadmap
0.8.1
0.8
0.7
0.6

Wyświetl plik

@ -1,6 +1,6 @@
# Minimal requirements
Django>=1.7,<1.8
wagtail==0.8
wagtail==0.8.1
# Recommended components (require additional setup):
# psycopg2==2.5.2

Wyświetl plik

@ -1,2 +1,2 @@
__version__ = '0.8'
__version__ = '0.8.1'
default_app_config = 'wagtail.wagtailcore.apps.WagtailCoreAppConfig'