Changelog and version bump
This commit is contained in:
parent
ffc77f9e89
commit
3b6d474d69
13
CHANGELOG
13
CHANGELOG
|
@ -3,6 +3,19 @@ Changelog
|
||||||
|
|
||||||
.. towncrier
|
.. towncrier
|
||||||
|
|
||||||
|
0.5.4 (2018-02-28)
|
||||||
|
------------------
|
||||||
|
|
||||||
|
Features:
|
||||||
|
|
||||||
|
- Now stop running radio when clearing queue (#98)
|
||||||
|
|
||||||
|
Bugfixes:
|
||||||
|
|
||||||
|
- Fixed queue skipping tracks (#91)
|
||||||
|
- Now loop properly on queue when we only have one track (#95)
|
||||||
|
|
||||||
|
|
||||||
0.5.3 (2018-02-27)
|
0.5.3 (2018-02-27)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
__version__ = '0.5.3'
|
__version__ = '0.5.4'
|
||||||
__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 queue skipping tracks (#91)
|
|
|
@ -1 +0,0 @@
|
||||||
Now loop properly on queue when we only have one track (#95)
|
|
Loading…
Reference in New Issue