diff --git a/deezer/__init__.py b/deezer/__init__.py index 0c7539775..889e12daf 100644 --- a/deezer/__init__.py +++ b/deezer/__init__.py @@ -10,7 +10,7 @@ from deezer.resources import Genre, Track, User, Comment, Radio -__version__ = '0.6.0' +__version__ = '0.6.1' __all__ = ['AsyncClient', 'Client', 'Resource', 'Album', 'Artist', 'Genre', 'Playlist', 'Track', 'User', 'Comment', 'Radio'] diff --git a/setup.cfg b/setup.cfg index 44236ed57..8845cbb09 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 0.6.0 +current_version = 0.6.1 tag_name = {new_version} [check-manifest] diff --git a/setup.py b/setup.py index c1be8b8ff..d55ef81cb 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ def read(*paths): return f.read() -version = '0.6.0' +version = '0.6.1' setup( name='deezer-python',