Skip to content

Commit

Permalink
Bump version: 0.6.1 → 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
browniebroke committed Oct 3, 2018
1 parent 3844fa3 commit 0484140
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion deezer/__init__.py
Expand Up @@ -10,7 +10,7 @@
from deezer.resources import Genre, Track, User, Comment, Radio


__version__ = '0.6.1'
__version__ = '0.7.0'
__all__ = ['AsyncClient', 'Client', 'Resource', 'Album',
'Artist', 'Genre', 'Playlist', 'Track', 'User',
'Comment', 'Radio']
Expand Down
9 changes: 2 additions & 7 deletions setup.cfg
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 0.6.1
current_version = 0.7.0
tag_name = {new_version}

[check-manifest]
Expand All @@ -22,20 +22,15 @@ ignore =
[flake8]
ignore = D203
exclude =
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
# The conf file is mostly autogenerated, ignore it
docs/source/conf.py,
# The old directory contains Flake8 2.0
old,
# This contains our built documentation
build,
# This contains builds of flake8 that we don't want to check
dist
max-complexity = 10
max-line-length = 120

[pytest]
addopts = -v --cov=deezer

2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -10,7 +10,7 @@ def read(*paths):
return f.read()


version = '0.6.1'
version = '0.7.0'

setup(
name='deezer-python',
Expand Down

0 comments on commit 0484140

Please sign in to comment.