From 25757544d29cdc09da165981209fcadb5c530292 Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Tue, 30 Oct 2018 22:18:14 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.7.0=20=E2=86=92=200.8.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deezer/__init__.py | 2 +- docs/source/conf.py | 4 ++-- setup.cfg | 4 ++-- setup.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/deezer/__init__.py b/deezer/__init__.py index 979023b7..8598190e 100644 --- a/deezer/__init__.py +++ b/deezer/__init__.py @@ -9,7 +9,7 @@ from deezer.resources import Genre, Track, User, Comment, Radio -__version__ = "0.7.0" +__version__ = "0.8.0" __all__ = [ "Client", "Resource", diff --git a/docs/source/conf.py b/docs/source/conf.py index 53eb4c5d..42945c8e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -58,9 +58,9 @@ # built documents. # # The short X.Y version. -version = '0.7.0' +version = '0.8.0' # The full version, including alpha/beta/rc tags. -release = '0.7.0' +release = '0.8.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 cb47d3f3..8ed33de2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 0.7.0 +current_version = 0.8.0 tag_name = {new_version} [bumpversion:file:deezer/__init__.py] @@ -11,7 +11,7 @@ tag_name = {new_version} [bumpversion:file:setup.py] [check-manifest] -ignore = +ignore = .github .github/* .travis.yml diff --git a/setup.py b/setup.py index c5def276..ba390b30 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def read(*paths): return f.read() -version = "0.7.0" +version = "0.8.0" setup( name="deezer-python",