Version bump and changelog
This commit is contained in:
parent
7093214be7
commit
b780bee874
32
CHANGELOG
32
CHANGELOG
|
@ -3,7 +3,37 @@ Changelog
|
||||||
|
|
||||||
.. towncrier
|
.. towncrier
|
||||||
|
|
||||||
0.6.1 (unreleased)
|
0.7 (2018-03-21)
|
||||||
|
----------------
|
||||||
|
|
||||||
|
Features:
|
||||||
|
|
||||||
|
- Can now filter artists and albums with no listenable tracks (#114)
|
||||||
|
- Improve the style of the sidebar to make it easier to understand which tab is
|
||||||
|
selected (#118)
|
||||||
|
- On artist page, albums are not sorted by release date, if any (#116)
|
||||||
|
- Playlists are here \o/ :tada: (#3, #93, #94)
|
||||||
|
- Use django-cacheops to cache common ORM requests (#117)
|
||||||
|
|
||||||
|
|
||||||
|
Bugfixes:
|
||||||
|
|
||||||
|
- Fixed broken import request admin (#115)
|
||||||
|
- Fixed forced redirection to login event with
|
||||||
|
API_AUTHENTICATION_REQUIRED=False (#119)
|
||||||
|
- Fixed position not being reseted properly when playing the same track
|
||||||
|
multiple times in a row
|
||||||
|
- Fixed synchronized start/stop radio buttons for all custom radios (#103)
|
||||||
|
- Fixed typo and missing icon on homepage (#96)
|
||||||
|
|
||||||
|
|
||||||
|
Documentation:
|
||||||
|
|
||||||
|
- Up-to-date and complete development and contribution instructions in
|
||||||
|
README.rst (#123)
|
||||||
|
|
||||||
|
|
||||||
|
0.6.1 (2018-03-06)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
Features:
|
Features:
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
__version__ = '0.6.1'
|
__version__ = '0.7'
|
||||||
__version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace('-', '.', 1).split('.')])
|
__version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace('-', '.', 1).split('.')])
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Fixed synchronized start/stop radio buttons for all custom radios (#103)
|
|
|
@ -1 +0,0 @@
|
||||||
Can now filter artists and albums with no listenable tracks (#114)
|
|
|
@ -1 +0,0 @@
|
||||||
Fixed broken import request admin (#115)
|
|
|
@ -1 +0,0 @@
|
||||||
On artist page, albums are not sorted by release date, if any (#116)
|
|
|
@ -1 +0,0 @@
|
||||||
Use django-cacheops to cache common ORM requests (#117)
|
|
|
@ -1 +0,0 @@
|
||||||
Improve the style of the sidebar to make it easier to understand which tab is selected (#118)
|
|
|
@ -1 +0,0 @@
|
||||||
Fixed forced redirection to login event with API_AUTHENTICATION_REQUIRED=False (#119)
|
|
|
@ -1 +0,0 @@
|
||||||
Up-to-date and complete development and contribution instructions in README.rst (#123)
|
|
|
@ -1 +0,0 @@
|
||||||
Playlists are here \o/ :tada: (#3, #93, #94)
|
|
|
@ -1 +0,0 @@
|
||||||
Fixed typo and missing icon on homepage (#96)
|
|
|
@ -1 +0,0 @@
|
||||||
Fixed position not being reseted properly when playing the same track multiple times in a row
|
|
Loading…
Reference in New Issue