Skip to content
Snippets Groups Projects
Verified Commit 0f06c398 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

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
parents 20ba6f92 6bf73384
No related branches found
No related tags found
No related merge requests found
......@@ -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)
----------------
......
# -*- 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('.')])
Added some feedback on the play button (#100)
Completely removed django-cachalot from the codebase (#110). You can safely remove the CACHALOT_ENABLED setting from your .env file
Can now skip acoustid on file import with the --no-acoustid flag (#111)
Added missing batch id in output during import (#112)
Smarter pagination which takes a fixed size (#84)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment