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:
commit
0f06c39854
21
CHANGELOG
21
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)
|
||||
----------------
|
||||
|
||||
|
|
|
@ -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('.')])
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Added some feedback on the play button (#100)
|
|
@ -1 +0,0 @@
|
|||
Completely removed django-cachalot from the codebase (#110). You can safely remove the CACHALOT_ENABLED setting from your .env file
|
|
@ -1 +0,0 @@
|
|||
Can now skip acoustid on file import with the --no-acoustid flag (#111)
|
|
@ -1 +0,0 @@
|
|||
Added missing batch id in output during import (#112)
|
|
@ -1 +0,0 @@
|
|||
Smarter pagination which takes a fixed size (#84)
|
Loading…
Reference in New Issue