diff --git a/deezer/__init__.py b/deezer/__init__.py index cbcf028d..7eed69fa 100644 --- a/deezer/__init__.py +++ b/deezer/__init__.py @@ -9,7 +9,7 @@ from deezer.resources import Genre, Track, User, Comment, Radio -__version__ = "0.9.0" +__version__ = "1.0.0" __all__ = [ "Client", "Resource", diff --git a/docs/source/conf.py b/docs/source/conf.py index ccccca6e..352ae5dc 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -56,9 +56,9 @@ # built documents. # # The short X.Y version. -version = "0.9.0" +version = "1.0.0" # The full version, including alpha/beta/rc tags. -release = "0.9.0" +release = "1.0.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 82ec951c..227b388f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 0.9.0 +current_version = 1.0.0 tag_name = {new_version} [bumpversion:file:deezer/__init__.py] diff --git a/setup.py b/setup.py index d38fda87..392bc1fa 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def read(*paths): return f.read() -version = "0.9.0" +version = "1.0.0" setup( name="deezer-python",