From aa0f0b942e9689e69a1c5b6cf0fbf4e7efa569fe Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Thu, 9 Oct 2014 19:51:26 +0100 Subject: [PATCH] prepare for 0.7 release --- CHANGELOG.txt | 2 +- docs/releases/0.7.rst | 10 +++------- wagtail/project_template/requirements.txt | 2 +- wagtail/wagtailcore/__init__.py | 2 +- 4 files changed, 6 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index a80ece0b9b..e4d3fb7fee 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,7 +1,7 @@ Changelog ========= -0.7 (xx.xx.2014) +0.7 (09.10.2014) ~~~~~~~~~~~~~~~~ * Added interface for choosing focal point on images * Redesigned and reorganised navigation menu to include a 'Settings' submenu diff --git a/docs/releases/0.7.rst b/docs/releases/0.7.rst index fd04356478..e5133e58a1 100644 --- a/docs/releases/0.7.rst +++ b/docs/releases/0.7.rst @@ -1,6 +1,6 @@ -========================================== -Wagtail 0.7 release notes - IN DEVELOPMENT -========================================== +========================= +Wagtail 0.7 release notes +========================= .. contents:: :local: @@ -100,7 +100,3 @@ The ``focal_point_key`` field on wagtailimages.Rendition has been changed to ``n - https://github.com/torchbox/wagtail/blob/master/wagtail/wagtailimages/south_migrations/0004_auto__chg_field_rendition_focal_point_key.py (for South / Django 1.6) - https://github.com/torchbox/wagtail/blob/master/wagtail/wagtailimages/migrations/0004_make_focal_point_key_not_nullable.py (for Django 1.7) - - -Deprecated features -=================== diff --git a/wagtail/project_template/requirements.txt b/wagtail/project_template/requirements.txt index d75817cf8d..5bd1d65826 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.6 +wagtail==0.7 # Recommended components (require additional setup): # psycopg2==2.5.2 diff --git a/wagtail/wagtailcore/__init__.py b/wagtail/wagtailcore/__init__.py index c45294088d..5c85c2a7de 100644 --- a/wagtail/wagtailcore/__init__.py +++ b/wagtail/wagtailcore/__init__.py @@ -1,2 +1,2 @@ -__version__ = '0.6' +__version__ = '0.7' default_app_config = 'wagtail.wagtailcore.apps.WagtailCoreAppConfig'