From 5edc9cd172a33b2fd0379f212b8b9780e3213396 Mon Sep 17 00:00:00 2001 From: Orakaro Date: Thu, 11 Feb 2016 23:50:40 +0900 Subject: [PATCH 1/1] version command fixed --- docs/conf.py | 4 ++-- rainbowstream/rainbow.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index ca3e0e7..e372797 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ copyright = u'2014, Vu Nhat Minh' # built documents. # # The short X.Y version. -version = '1.3.2' +version = '1.3.3' # The full version, including alpha/beta/rc tags. -release = '1.3.2' +release = '1.3.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/rainbowstream/rainbow.py b/rainbowstream/rainbow.py index 3a55c18..465299f 100644 --- a/rainbowstream/rainbow.py +++ b/rainbowstream/rainbow.py @@ -189,12 +189,12 @@ def upgrade_center(): notice += light_yellow(current) + '\n' notice += light_magenta('You should upgrade with ') notice += light_green('pip install -U rainbowstream') - printNicely(notice) else: notice = light_yellow('You are running latest version (') notice += light_green(current) notice += light_yellow(')') notice += '\n' + printNicely(notice) except: pass diff --git a/setup.py b/setup.py index 26b4e98..10f5094 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ import os import os.path # Bumped version -version = '1.3.2' +version = '1.3.3' # Require install_requires = [ -- 2.25.1