diff --git a/CHANGELOG.md b/CHANGELOG.md index 17d4c3b..7a200a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [0.2.0] - 2016-11-30 +### Fixed +* Verbose name of `themes` instead of `Theme settings` +* Exception `ImproperlyConfigured` in `ThemeMiddleware` + +### Added +* Optional settings `WAGTAIL_THEME_PATH` for storing themes into one directory (issue [#5]) +* Unit and integration tests and CI with Travis + ## [0.1.3] - 2016-09-12 ### Fixed * Backwards compatibility with Django 1.10 new middleware classes (issue [#1]) @@ -14,8 +23,10 @@ ### Added * Initial prototype +[0.2.0]: https://github.com/moorinteractive/wagtail-themes/compare/0.1.3...0.2.0 [0.1.3]: https://github.com/moorinteractive/wagtail-themes/compare/0.1.2...0.1.3 [0.1.2]: https://github.com/moorinteractive/wagtail-themes/compare/0.1.1...0.1.2 [0.1.1]: https://github.com/moorinteractive/wagtail-themes/compare/0.1...0.1.1 +[#5]: https://github.com/moorinteractive/wagtail-themes/issues/5 [#2]: https://github.com/moorinteractive/wagtail-themes/issues/2 [#1]: https://github.com/moorinteractive/wagtail-themes/issues/1 diff --git a/setup.py b/setup.py index a8f84fa..c6adbdd 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( name='wagtail-themes', - version='0.1.3', + version='0.2.0', description='Site specific theme loader for Django Wagtail.', author='Rob Moorman', author_email='rob@moori.nl',