diff --git a/HISTORY.rst b/HISTORY.rst index 8b6cdf0..95b503e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,13 @@ History ======= +v0.7.1 +------ +* Quick fix for "got key error 'picture'" error. - BlackLight_ +* Bring back Radio support - bjesus_ +* Added function for multiple deletions at once bloedboemmel_ +* Use UTC instead of local time for expiry_time lutzbuerkle_ + v0.7.0 ------ @@ -90,3 +97,5 @@ v0.6.2 .. _BlackLight: https://github.com/BlackLight .. _lutzbuerkle: https://github.com/lutzbuerkle .. _retired-guy: https://github.com/retired-guy +.. _bjesus: https://github.com/bjesus +.. _bloedboemmel: https://github.com/bloedboemmel diff --git a/setup.py b/setup.py index d13d127..ef6d9fd 100644 --- a/setup.py +++ b/setup.py @@ -21,13 +21,13 @@ setup( name='tidalapi', - version='0.7.0', + version='0.7.1', description='Unofficial API for TIDAL music streaming service.', long_description=long_description, author='Thomas Amland', author_email='thomas.amland@googlemail.com', - maintainer='morguldir', - maintainer_email='morguldir@protonmail.com', + maintainer='tehkillerbee', + maintainer_email='josaksel.dk@gmail.com', url='https://github.com/tamland/python-tidal', license='LGPL', packages=['tidalapi'], diff --git a/tidalapi/__init__.py b/tidalapi/__init__.py index a1f76ee..3b5c6ce 100644 --- a/tidalapi/__init__.py +++ b/tidalapi/__init__.py @@ -21,4 +21,4 @@ from .request import Requests -__version__ = "0.7.0" +__version__ = "0.7.1"