diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a55319b..f5cb83b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,10 @@ +*Version 1.4.0 2015/02/21* + - Incremental (find-as-you type) search + - Reload changed file, saving various display parameters + - Variable width columns ('mode', 'max' or fixed width) + - Support reading from stdin + - Resize columns individually or as a whole + - Add commands to skip to next changed value (by row column) - Pass a y,x start position on command line or to view() *Version 1.3.0 2015-01-17* diff --git a/README.rst b/README.rst index 49c3105..03389eb 100644 --- a/README.rst +++ b/README.rst @@ -50,7 +50,7 @@ Features: * Toggle persistent header row * Sort ascending or descending by any column. Dynamically change column width and gap * Sort in 'natural order' to improve numeric sorting -* Full-text search, n and p to cycle between search results +* Full-text incremental search, n and p to cycle between search results * 'Enter' to view the full cell contents * Yank cell contents to the clipboard * File can be reloaded in-place if the data changes. diff --git a/setup.py b/setup.py index f3a8c1d..2347b2c 100755 --- a/setup.py +++ b/setup.py @@ -8,13 +8,13 @@ pass setup(name="tabview", - version="1.3.0", + version="1.4.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.3.0", + download_url="https://github.com/firecat53/tabview/tarball/1.4.0", packages=['tabview'], scripts=['bin/tabview'], package_data={'tabview': ['README.rst']},