From 903b968dde358f6499dfb3b4c7afa63f8b8ca05b Mon Sep 17 00:00:00 2001 From: Rodney Keeling Date: Thu, 21 Aug 2014 16:19:19 -0700 Subject: [PATCH] correct version --- discogs_client/__init__.py | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/discogs_client/__init__.py b/discogs_client/__init__.py index ba9af57..94eae1e 100644 --- a/discogs_client/__init__.py +++ b/discogs_client/__init__.py @@ -1,5 +1,5 @@ -__version_info__ = (2,0,0) -__version__ = '2.0.0' +__version_info__ = (2,0,2) +__version__ = '2.0.2' from discogs_client.client import Client from discogs_client.models import Artist, Release, Master, Label, User, \ diff --git a/setup.py b/setup.py index 588d6f7..f7d0277 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name='discogs-client', - version='2.0.1', + version='2.0.2', description='Official Python API client for Discogs', url='https://github.com/discogs/discogs-python-client', author='Discogs',