diff --git a/RELEASE.rst b/RELEASE.rst index 5fbf6c3c..8e779c56 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -1,6 +1,17 @@ Release Notes ------------- +Version 0.7.0 +============= + +- Implemented ``Select2`` element to refactor ``select2`` widgets. +- Added checkboxes to allow user to uncheck items in export panel. +- Sped up indexing using caching. +- Made checkbox for ``Allow multiple terms`` in the taxonomy panel + consistent with the rest of the UI. +- Implemented export of static assets. +- Fixed user menu display on LORE welcome page. + Version 0.6.0 ============= diff --git a/lore/settings.py b/lore/settings.py index 8ef419e3..3c853f2b 100644 --- a/lore/settings.py +++ b/lore/settings.py @@ -15,7 +15,7 @@ from django.core.exceptions import ImproperlyConfigured import yaml -VERSION = '0.6.0' +VERSION = '0.7.0' CONFIG_PATHS = [ os.environ.get('LORE_CONFIG', ''),