diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d038540..38b3d51 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.6 +current_version = 2.7 parse = (?P\d+)\.(?P\d+)(\.(?P\d+))? serialize = {major}.{minor}.{patch} diff --git a/discogs_client/__init__.py b/discogs_client/__init__.py index 9b10d12..f448173 100644 --- a/discogs_client/__init__.py +++ b/discogs_client/__init__.py @@ -1,4 +1,4 @@ -__version__ = '2.6' +__version__ = '2.7' __version_info__ = tuple(int(i) for i in __version__.split('.') if i.isdigit()) from discogs_client.client import Client diff --git a/docs/source/conf.py b/docs/source/conf.py index fc3464b..2fab597 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ author = 'The Joalla Team' # The full version, including alpha/beta/rc tags -release = '2.6' +release = '2.7' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index c1096d2..3f26132 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name='python3-discogs-client', - version='2.6', + version='2.7', description='Python API client for Discogs', long_description='This is an active fork of the official "Discogs API client for Python", which was deprecated by discogs.com as of June 2020. We think it is a very useful Python module and decided to continue maintaining it. Please visit: https://github.com/joalla/discogs_client for more information.', url='https://github.com/joalla/discogs_client',