diff --git a/CHANGELOG b/CHANGELOG index 4ce156e06..f2705739c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,30 @@ Changelog .. towncrier +0.5.3 (2018-02-27) +------------------ + +Features: + +- Added admin interface for radios, track files, favorites and import requests (#80) +- Added basic instance stats on /about (#82) +- Search now unaccent letters for queries like "The Dø" or "Björk" yielding more results (#81) + + +Bugfixes: + +- Always use username in sidebar (#89) +- Click event outside of player icons (#83) +- Fixed broken import because of missing transaction +- Now always load next radio track on last queue track ended (#87) +- Now exclude tracks without file from radio candidates (#88) +- skip to next track properly on 40X errors (#86) + + +Other: + +- Switched to towncrier for changelog management and compilation + 0.5.2 (2018-02-26) ------------------ diff --git a/api/funkwhale_api/__init__.py b/api/funkwhale_api/__init__.py index 2df7e2034..03e434591 100644 --- a/api/funkwhale_api/__init__.py +++ b/api/funkwhale_api/__init__.py @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- -__version__ = '0.5.2' +__version__ = '0.5.3' __version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace('-', '.', 1).split('.')]) diff --git a/changes/changelog.d/82.feature b/changes/changelog.d/.gitkeep similarity index 100% rename from changes/changelog.d/82.feature rename to changes/changelog.d/.gitkeep diff --git a/changes/changelog.d/80.feature b/changes/changelog.d/80.feature deleted file mode 100644 index 16591a910..000000000 --- a/changes/changelog.d/80.feature +++ /dev/null @@ -1 +0,0 @@ -Added admin interface for radios, track files, favorites and import requests (#80) diff --git a/changes/changelog.d/81.feature b/changes/changelog.d/81.feature deleted file mode 100644 index 56c44d3cc..000000000 --- a/changes/changelog.d/81.feature +++ /dev/null @@ -1 +0,0 @@ -Search now unaccent letters for queries like "The Dø" or "Björk", yielding more results (#81) diff --git a/changes/changelog.d/83.bugfix b/changes/changelog.d/83.bugfix deleted file mode 100644 index e69de29bb..000000000 diff --git a/changes/changelog.d/86.bugfix b/changes/changelog.d/86.bugfix deleted file mode 100644 index c02a1997c..000000000 --- a/changes/changelog.d/86.bugfix +++ /dev/null @@ -1 +0,0 @@ -skip to next track properly on 40X errors (#86) diff --git a/changes/changelog.d/87.bugfix b/changes/changelog.d/87.bugfix deleted file mode 100644 index 534ddc60a..000000000 --- a/changes/changelog.d/87.bugfix +++ /dev/null @@ -1 +0,0 @@ -Now always load next radio track on last queue track ended (#87) diff --git a/changes/changelog.d/88.bugfix b/changes/changelog.d/88.bugfix deleted file mode 100644 index d2f707b44..000000000 --- a/changes/changelog.d/88.bugfix +++ /dev/null @@ -1 +0,0 @@ -Now exclude tracks without file from radio candidates (#88) diff --git a/changes/changelog.d/89.bugfix b/changes/changelog.d/89.bugfix deleted file mode 100644 index 5338e87db..000000000 --- a/changes/changelog.d/89.bugfix +++ /dev/null @@ -1 +0,0 @@ -Always use username in sidebar (#89) diff --git a/changes/changelog.d/changelog.misc b/changes/changelog.d/changelog.misc deleted file mode 100644 index 46516abc7..000000000 --- a/changes/changelog.d/changelog.misc +++ /dev/null @@ -1 +0,0 @@ -Switched to towncrier for changelog management and compilation diff --git a/changes/changelog.d/transaction-import.bugfix b/changes/changelog.d/transaction-import.bugfix deleted file mode 100644 index 0efe3f000..000000000 --- a/changes/changelog.d/transaction-import.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed broken import because of missing transaction