From a791518bedb1c84403f5c6be64e4e6190542a110 Mon Sep 17 00:00:00 2001 From: = <=> Date: Thu, 7 Dec 2017 11:44:20 +1100 Subject: [PATCH] Version number update --- cryptop/cryptop.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cryptop/cryptop.py b/cryptop/cryptop.py index e39c598..0a60032 100644 --- a/cryptop/cryptop.py +++ b/cryptop/cryptop.py @@ -120,7 +120,7 @@ def write_scr(stdscr, wallet, y, x): third_pad = ' ' * (CONFIG['theme'].getint('field_length', 13) - 3) if y >= 1: - stdscr.addnstr(0, 0, 'cryptop v0.1.9', x, curses.color_pair(2)) + stdscr.addnstr(0, 0, 'cryptop v0.2.0', x, curses.color_pair(2)) if y >= 2: header = ' COIN{}PRICE{}HELD {}VAL{}HIGH {}LOW '.format(first_pad, second_pad, third_pad, first_pad, first_pad) stdscr.addnstr(1, 0, header, x, curses.color_pair(3)) diff --git a/setup.py b/setup.py index 093c899..998b8c4 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='cryptop', - version='0.1.9', + version='0.2.0', description='Command line Cryptocurrency Portfolio', long_description=readme, author='huwwp',