From 1003cd382c92cedcb971384d24f7c55de28209ad Mon Sep 17 00:00:00 2001 From: J0J0 T Date: Wed, 15 Jun 2022 08:21:56 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.3.14=20=E2=86=92=202.3.15?= 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 02bd030..557e2a0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.3.14 +current_version = 2.3.15 parse = (?P\d+)\.(?P\d+)(\.(?P\d+))? serialize = {major}.{minor}.{patch} diff --git a/discogs_client/__init__.py b/discogs_client/__init__.py index 329ceb5..548a175 100644 --- a/discogs_client/__init__.py +++ b/discogs_client/__init__.py @@ -1,4 +1,4 @@ -__version__ = '2.3.14' +__version__ = '2.3.15' __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 33b8bd7..bf3e516 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.3.14' +release = '2.3.15' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index e5fb80d..9efb013 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name='python3-discogs-client', - version='2.3.14', + version='2.3.15', 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',