diff --git a/CHANGELOG b/CHANGELOG index 6881b7bf0fbd38b8fc2073bd298cfa7e4d0ec97c..0b91987235f620475b00f26af87787c43670913b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,7 +3,37 @@ Changelog .. towncrier -0.6.1 (unreleased) +0.7 (2018-03-21) +---------------- + +Features: + +- Can now filter artists and albums with no listenable tracks (#114) +- Improve the style of the sidebar to make it easier to understand which tab is + selected (#118) +- On artist page, albums are not sorted by release date, if any (#116) +- Playlists are here \o/ :tada: (#3, #93, #94) +- Use django-cacheops to cache common ORM requests (#117) + + +Bugfixes: + +- Fixed broken import request admin (#115) +- Fixed forced redirection to login event with + API_AUTHENTICATION_REQUIRED=False (#119) +- Fixed position not being reseted properly when playing the same track + multiple times in a row +- Fixed synchronized start/stop radio buttons for all custom radios (#103) +- Fixed typo and missing icon on homepage (#96) + + +Documentation: + +- Up-to-date and complete development and contribution instructions in + README.rst (#123) + + +0.6.1 (2018-03-06) ------------------ Features: diff --git a/api/funkwhale_api/__init__.py b/api/funkwhale_api/__init__.py index 841f2a299128d2b5f5c6ac52dc87a67fefd0954a..0a12b794efb05892fa6fca0bff82b192e936f108 100644 --- a/api/funkwhale_api/__init__.py +++ b/api/funkwhale_api/__init__.py @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- -__version__ = '0.6.1' +__version__ = '0.7' __version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace('-', '.', 1).split('.')]) diff --git a/changes/changelog.d/103.bugfix b/changes/changelog.d/103.bugfix deleted file mode 100644 index 59b83abde7bd808b3c030ba5056a4efbf723eeb6..0000000000000000000000000000000000000000 --- a/changes/changelog.d/103.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed synchronized start/stop radio buttons for all custom radios (#103) diff --git a/changes/changelog.d/114.feature b/changes/changelog.d/114.feature deleted file mode 100644 index 88e3bfc1194f390c2eac430b72cc706872a72338..0000000000000000000000000000000000000000 --- a/changes/changelog.d/114.feature +++ /dev/null @@ -1 +0,0 @@ -Can now filter artists and albums with no listenable tracks (#114) diff --git a/changes/changelog.d/115.bugfix b/changes/changelog.d/115.bugfix deleted file mode 100644 index 96da61f090c91e85849ce05c2b336066972d5710..0000000000000000000000000000000000000000 --- a/changes/changelog.d/115.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed broken import request admin (#115) diff --git a/changes/changelog.d/116.feature b/changes/changelog.d/116.feature deleted file mode 100644 index e1734340142ba84693dff9fbe3829e895e20543c..0000000000000000000000000000000000000000 --- a/changes/changelog.d/116.feature +++ /dev/null @@ -1 +0,0 @@ -On artist page, albums are not sorted by release date, if any (#116) diff --git a/changes/changelog.d/117.feature b/changes/changelog.d/117.feature deleted file mode 100644 index 2df028edc55b0652a21b35190dac54bf2ddc012f..0000000000000000000000000000000000000000 --- a/changes/changelog.d/117.feature +++ /dev/null @@ -1 +0,0 @@ -Use django-cacheops to cache common ORM requests (#117) diff --git a/changes/changelog.d/118.feature b/changes/changelog.d/118.feature deleted file mode 100644 index a716f01466584ee6ccddf2bc24e99f87e9a47cea..0000000000000000000000000000000000000000 --- a/changes/changelog.d/118.feature +++ /dev/null @@ -1 +0,0 @@ -Improve the style of the sidebar to make it easier to understand which tab is selected (#118) \ No newline at end of file diff --git a/changes/changelog.d/119.bugfix b/changes/changelog.d/119.bugfix deleted file mode 100644 index b2e7ff71f4c93f1858d7a71ffca69e9a573421e7..0000000000000000000000000000000000000000 --- a/changes/changelog.d/119.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed forced redirection to login event with API_AUTHENTICATION_REQUIRED=False (#119) diff --git a/changes/changelog.d/123.doc b/changes/changelog.d/123.doc deleted file mode 100644 index 679a0b8aff7775ef9863270513aae25c972b0fd9..0000000000000000000000000000000000000000 --- a/changes/changelog.d/123.doc +++ /dev/null @@ -1 +0,0 @@ -Up-to-date and complete development and contribution instructions in README.rst (#123) diff --git a/changes/changelog.d/3.feature b/changes/changelog.d/3.feature deleted file mode 100644 index e2b962c4436186b4345c0316430a769602ae3c65..0000000000000000000000000000000000000000 --- a/changes/changelog.d/3.feature +++ /dev/null @@ -1 +0,0 @@ -Playlists are here \o/ :tada: (#3, #93, #94) diff --git a/changes/changelog.d/96.bugfix b/changes/changelog.d/96.bugfix deleted file mode 100644 index a37acb1bf08bab49bb0299e767448f730da15f0d..0000000000000000000000000000000000000000 --- a/changes/changelog.d/96.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed typo and missing icon on homepage (#96) diff --git a/changes/changelog.d/queue-same-track.bugfix b/changes/changelog.d/queue-same-track.bugfix deleted file mode 100644 index 11a1a08c7ca5c61bbc0dfe999fa82063ee806062..0000000000000000000000000000000000000000 --- a/changes/changelog.d/queue-same-track.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed position not being reseted properly when playing the same track multiple times in a row