From b86cad12681e98ff68dfcabf7c81a451d02ccb39 Mon Sep 17 00:00:00 2001 From: J0J0 Todos Date: Tue, 4 Oct 2022 07:06:27 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.4=20=E2=86=92=202.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- discogs_client/__init__.py | 2 +- docs/source/conf.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1b17ee9..dd00b37 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.4 +current_version = 2.5 parse = (?P\d+)\.(?P\d+)(\.(?P\d+))? serialize = {major}.{minor}.{patch} diff --git a/discogs_client/__init__.py b/discogs_client/__init__.py index 184bd13..d199413 100644 --- a/discogs_client/__init__.py +++ b/discogs_client/__init__.py @@ -1,4 +1,4 @@ -__version__ = '2.4' +__version__ = '2.5' __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 b2fe7be..da64fa1 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.4' +release = '2.5' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 9c181c0..b533e7d 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name='python3-discogs-client', - version='2.4', + version='2.5', 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',