From b3c1942d10bdf2198344ab7304a68ac075952474 Mon Sep 17 00:00:00 2001 From: Steve Jones Date: Wed, 10 Mar 2021 10:53:45 -0800 Subject: [PATCH] Version bump (0.3) --- VERSION | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 3b04cfb..be58634 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2 +0.3 diff --git a/setup.py b/setup.py index ae08bee..fec6393 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ project_dir = path.abspath(path.dirname(__file__)) with open(path.join(project_dir, 'VERSION'), 'rb') as version: - version = version.read().decode('UTF-8') + version = version.read().decode('UTF-8').strip() with open(path.join(project_dir, 'README.md'), 'rb') as readme: long_description = readme.read().decode('UTF-8')