diff --git a/CHANGELOG b/CHANGELOG index 19cd704a1727133c2f660c10258a3649e74893c7..6881b7bf0fbd38b8fc2073bd298cfa7e4d0ec97c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,27 @@ Changelog .. towncrier +0.6.1 (unreleased) +------------------ + +Features: + +- Can now skip acoustid on file import with the --no-acoustid flag (#111) + + +Bugfixes: + +- Added missing batch id in output during import (#112) +- Added some feedback on the play button (#100) +- Smarter pagination which takes a fixed size (#84) + + +Other: + +- Completely removed django-cachalot from the codebase (#110). You can safely + remove the CACHALOT_ENABLED setting from your .env file + + 0.6 (2018-03-04) ---------------- diff --git a/api/funkwhale_api/__init__.py b/api/funkwhale_api/__init__.py index c384dc52166ee78259adf5fc75c17eac242edb47..841f2a299128d2b5f5c6ac52dc87a67fefd0954a 100644 --- a/api/funkwhale_api/__init__.py +++ b/api/funkwhale_api/__init__.py @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- -__version__ = '0.6' +__version__ = '0.6.1' __version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace('-', '.', 1).split('.')]) diff --git a/changes/changelog.d/100.bugfix b/changes/changelog.d/100.bugfix deleted file mode 100644 index cad193d5266afe4f4bca985999836a453e02265c..0000000000000000000000000000000000000000 --- a/changes/changelog.d/100.bugfix +++ /dev/null @@ -1 +0,0 @@ -Added some feedback on the play button (#100) diff --git a/changes/changelog.d/110.misc b/changes/changelog.d/110.misc deleted file mode 100644 index 3b5163e92883ab168908236d09887de1e89c9c8b..0000000000000000000000000000000000000000 --- a/changes/changelog.d/110.misc +++ /dev/null @@ -1 +0,0 @@ -Completely removed django-cachalot from the codebase (#110). You can safely remove the CACHALOT_ENABLED setting from your .env file diff --git a/changes/changelog.d/111.feature b/changes/changelog.d/111.feature deleted file mode 100644 index 73fc5df3ada96c095d834bcf8ea66da283bb23c7..0000000000000000000000000000000000000000 --- a/changes/changelog.d/111.feature +++ /dev/null @@ -1 +0,0 @@ -Can now skip acoustid on file import with the --no-acoustid flag (#111) diff --git a/changes/changelog.d/112.bugfix b/changes/changelog.d/112.bugfix deleted file mode 100644 index ffd2f639c75416c15927528d88b35582c26d9529..0000000000000000000000000000000000000000 --- a/changes/changelog.d/112.bugfix +++ /dev/null @@ -1 +0,0 @@ -Added missing batch id in output during import (#112) diff --git a/changes/changelog.d/84.bugfix b/changes/changelog.d/84.bugfix deleted file mode 100644 index 2d7e08da04fc728b4f48fc33156a845777fc2317..0000000000000000000000000000000000000000 --- a/changes/changelog.d/84.bugfix +++ /dev/null @@ -1 +0,0 @@ -Smarter pagination which takes a fixed size (#84)