diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4578db7..350f88b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,8 @@ +*Version 1.3.0 2015-01-17* + - Added basic unit and integration tests + - Travis integration + - Other speed improvements and bug fixes + *Version 1.2.0 2015-01-08* - Dual Python 2.7+ and 3+ support. Improved Unicode handling diff --git a/LICENSE.txt b/LICENSE.txt index 1c5315b..e5883cc 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -2,7 +2,7 @@ Scott Hansen Based on code contributed by A.M. Kuchling -Copyright (c) 2014, Scott Hansen +Copyright (c) 2015, Scott Hansen Copyright (c) 2010, Andrew M. Kuchling diff --git a/README.rst b/README.rst index 68423cf..ba73429 100644 --- a/README.rst +++ b/README.rst @@ -13,6 +13,7 @@ Other Contributors: + Matus Gura + Nathan Typanski + + scls19fr + Yuri D'Elia The highlighted position is shown in the top-left corner of the screen; next to diff --git a/setup.py b/setup.py index a00640c..835c124 100755 --- a/setup.py +++ b/setup.py @@ -4,13 +4,13 @@ import setuptools setup(name="tabview", - version="1.2.0", + version="1.3.0", description="A curses command-line CSV and list (tabular data) viewer", long_description=open('README.rst').read(), author="Scott Hansen", author_email="firecat4153@gmail.com", url="https://github.com/firecat53/tabview", - download_url="https://github.com/firecat53/tabview/tarball/1.2.0", + download_url="https://github.com/firecat53/tabview/tarball/1.3.0", packages=['tabview'], scripts=['bin/tabview'], package_data={'tabview': ['README.rst']},