From 419dd5858233aab141dfcdaf055f83937e107c29 Mon Sep 17 00:00:00 2001 From: Andrew Dunai Date: Tue, 30 Jan 2018 15:31:22 +0200 Subject: [PATCH] Fixed versioning. --- clay/meta.py | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/clay/meta.py b/clay/meta.py index 8bbc9ab..818fbdf 100644 --- a/clay/meta.py +++ b/clay/meta.py @@ -2,7 +2,7 @@ Predefined values. """ APP_NAME = 'Clay Player' -VERSION = '0.1b' +VERSION = '0.5.2' USER_AGENT = ' '.join([ 'Mozilla/5.0 (X11; Linux x86_64)' 'AppleWebKit/537.36 (KHTML, like Gecko)' diff --git a/setup.py b/setup.py index 9254830..b7ee2b1 100755 --- a/setup.py +++ b/setup.py @@ -1,10 +1,11 @@ #!/usr/bin/env python from setuptools import setup, find_packages +from clay.meta import VERSION setup( name='clay-player', - version='0.5.1', + version=VERSION, description='Command Line Player for Google Play Music', author='Andrew Dunai', author_email='a@dun.ai',