diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 28d6403d5..729572987 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,7 +1,7 @@ Changelog ========= -1.4.5 (xx.xx.xxxx) - IN DEVELOPMENT +1.4.5 (19.05.2016) ~~~~~~~~~~~~~~~~~~ * Fix: Paste / drag operations done entirely with the mouse are now correctly picked up as edits within the rich text editor (Matt Fozard) diff --git a/docs/releases/1.4.5.rst b/docs/releases/1.4.5.rst index 7ca4fe05c..47d6d79db 100644 --- a/docs/releases/1.4.5.rst +++ b/docs/releases/1.4.5.rst @@ -1,6 +1,6 @@ -============================================ -Wagtail 1.4.5 release notes - IN DEVELOPMENT -============================================ +=========================== +Wagtail 1.4.5 release notes +=========================== .. contents:: :local: diff --git a/wagtail/project_template/requirements.txt b/wagtail/project_template/requirements.txt index 5afed6498..ce65b571f 100644 --- a/wagtail/project_template/requirements.txt +++ b/wagtail/project_template/requirements.txt @@ -1,2 +1,2 @@ Django>=1.9,<1.10 -wagtail>=1.4.4,<1.5 +wagtail>=1.4.5,<1.5 diff --git a/wagtail/wagtailcore/__init__.py b/wagtail/wagtailcore/__init__.py index 4a87fac5f..c34ee72b8 100644 --- a/wagtail/wagtailcore/__init__.py +++ b/wagtail/wagtailcore/__init__.py @@ -1,6 +1,6 @@ -__version__ = '1.4.4' +__version__ = '1.4.5' # Required for npm package for frontend -__semver__ = '1.4.4' +__semver__ = '1.4.5' default_app_config = 'wagtail.wagtailcore.apps.WagtailCoreAppConfig'