diff --git a/CHANGELOG.md b/CHANGELOG.md index 2999a9cb..1d8ba8a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,18 @@ ## Unreleased +- TBC + +## [0.5.0] - 2020-02-20 + - Added interactive demo ([#82](https://github.com/torchbox/wagtailmedia/pull/82)). Thanks to [@thenewguy](https://github.com/thenewguy) - Added setting `WAGTAILMEDIA_MEDIA_FORM_BASE` to simplify customization of the media form ([#83](https://github.com/torchbox/wagtailmedia/pull/83)). Thanks to [@thenewguy](https://github.com/thenewguy) +- Fix Wagtail > 2.8 compatibility (reshuffled imports) +- Fix Django 3 compatibility issues ([#88](https://github.com/torchbox/wagtailmedia/pull/88)). Thanks to [@lohmander](https://github.com/lohmander) ## [0.4.0] - 2019-12-06 -- Added `construct_media_chooser_queryset` hook ([#60](https://github.com/torchbox/wagtailmedia/pull/60)). Thanks to [@jeromelebleu](https://github.com/jeromelebleu) +- Added `construct_media_chooser_queryset` hook ([#60](https://github.com/torchbox/wagtailmedia/pull/60)). Thanks to [@jeromelebleu](https://github.com/jeromelebleu) - Added further template blocks ([#79](https://github.com/torchbox/wagtailmedia/pull/79)). Thanks to [@thenewguy](https://github.com/thenewguy) - Added support for media renditions ([#67](https://github.com/torchbox/wagtailmedia/pull/67)). Thanks to [@thenewguy](https://github.com/thenewguy) - Fixed Wagtail 2.7 compatibility ([#63](https://github.com/torchbox/wagtailmedia/pull/63)). Thanks to [@Chris-May](https://github.com/Chris-May) diff --git a/wagtailmedia/__init__.py b/wagtailmedia/__init__.py index 2e4cb6e6..d242a4cc 100644 --- a/wagtailmedia/__init__.py +++ b/wagtailmedia/__init__.py @@ -1,3 +1,3 @@ -__version__ = '0.4.0' +__version__ = '0.5.0' default_app_config = 'wagtailmedia.apps.WagtailMediaAppConfig'