0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-22 11:07:57 +01:00

Prepare for 0.8.1 release

This commit is contained in:
Matt Westcott 2014-11-05 22:05:48 +00:00
parent 8a3ccbef26
commit 48957a998f
5 changed files with 24 additions and 2 deletions

View File

@ -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)
~~~~~~~~~~~~~~~~

17
docs/releases/0.8.1.rst Normal file
View File

@ -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

View File

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

View File

@ -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

View File

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