From 48957a998f95dc2ae2a46326c02a45546012b5ae Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Wed, 5 Nov 2014 22:05:48 +0000 Subject: [PATCH] Prepare for 0.8.1 release --- CHANGELOG.txt | 4 ++++ docs/releases/0.8.1.rst | 17 +++++++++++++++++ docs/releases/index.rst | 1 + wagtail/project_template/requirements.txt | 2 +- wagtail/wagtailcore/__init__.py | 2 +- 5 files changed, 24 insertions(+), 2 deletions(-) create mode 100644 docs/releases/0.8.1.rst diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 4d2f323781..4687303a81 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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) ~~~~~~~~~~~~~~~~ diff --git a/docs/releases/0.8.1.rst b/docs/releases/0.8.1.rst new file mode 100644 index 0000000000..a8b1f86b16 --- /dev/null +++ b/docs/releases/0.8.1.rst @@ -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 diff --git a/docs/releases/index.rst b/docs/releases/index.rst index 04e13d412e..876a8fa672 100644 --- a/docs/releases/index.rst +++ b/docs/releases/index.rst @@ -5,6 +5,7 @@ Release notes :maxdepth: 1 roadmap + 0.8.1 0.8 0.7 0.6 diff --git a/wagtail/project_template/requirements.txt b/wagtail/project_template/requirements.txt index 9966b70186..2d2909b837 100644 --- a/wagtail/project_template/requirements.txt +++ b/wagtail/project_template/requirements.txt @@ -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 diff --git a/wagtail/wagtailcore/__init__.py b/wagtail/wagtailcore/__init__.py index 7987405e01..b525ab79d0 100644 --- a/wagtail/wagtailcore/__init__.py +++ b/wagtail/wagtailcore/__init__.py @@ -1,2 +1,2 @@ -__version__ = '0.8' +__version__ = '0.8.1' default_app_config = 'wagtail.wagtailcore.apps.WagtailCoreAppConfig'