diff --git a/deezer/__init__.py b/deezer/__init__.py index 7eed69fa..ff7a0bcb 100644 --- a/deezer/__init__.py +++ b/deezer/__init__.py @@ -9,7 +9,7 @@ from deezer.resources import Genre, Track, User, Comment, Radio -__version__ = "1.0.0" +__version__ = "1.1.0" __all__ = [ "Client", "Resource", diff --git a/docs/source/conf.py b/docs/source/conf.py index 352ae5dc..4528e7c5 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -56,9 +56,9 @@ # built documents. # # The short X.Y version. -version = "1.0.0" +version = "1.1.0" # The full version, including alpha/beta/rc tags. -release = "1.0.0" +release = "1.1.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index fde550ba..40051f6c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 1.0.0 +current_version = 1.1.0 tag_name = {new_version} [bumpversion:file:deezer/__init__.py] diff --git a/setup.py b/setup.py index a23ed066..97d4e8bd 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def read(*paths): return f.read() -version = "1.0.0" +version = "1.1.0" setup( name="deezer-python",