Merge tag '0.6.1' into develop

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
This commit is contained in:
Eliot Berriot 2018-03-06 21:56:25 +01:00
commit 0f06c39854
No known key found for this signature in database
GPG Key ID: DD6965E2476E5C27
7 changed files with 22 additions and 6 deletions

View File

@ -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)
----------------

View File

@ -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('.')])

View File

@ -1 +0,0 @@
Added some feedback on the play button (#100)

View File

@ -1 +0,0 @@
Completely removed django-cachalot from the codebase (#110). You can safely remove the CACHALOT_ENABLED setting from your .env file

View File

@ -1 +0,0 @@
Can now skip acoustid on file import with the --no-acoustid flag (#111)

View File

@ -1 +0,0 @@
Added missing batch id in output during import (#112)

View File

@ -1 +0,0 @@
Smarter pagination which takes a fixed size (#84)