diff --git a/CHANGELOG.md b/CHANGELOG.md index 977c28cb0..aa9be42c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # VisiData version history +# v1.5.2 (2019-01-12) + +## Bugfixes +- [regex] fix `g*` #239 (thanks to @jsvine for bug hunting) +- [editline] suspend during editline will resume in editline +- [editline] `Ctrl+W` on an empty value in editline now works + +## Docs +- [manpage] update the manpage to be more accurate for boolean command line options + # v1.5.1 (2018-12-17) ## Bugfixes diff --git a/README.md b/README.md index 794d5762e..2ea5cd058 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# VisiData v1.5.1 [![CircleCI](https://circleci.com/gh/saulpw/visidata/tree/stable.svg?style=svg)](https://circleci.com/gh/saulpw/visidata/tree/stable) +# VisiData v1.5.2 [![CircleCI](https://circleci.com/gh/saulpw/visidata/tree/stable.svg?style=svg)](https://circleci.com/gh/saulpw/visidata/tree/stable) A terminal interface for exploring and arranging tabular data. diff --git a/bin/vd b/bin/vd index 8e5ce8dca..1985240ce 100755 --- a/bin/vd +++ b/bin/vd @@ -3,7 +3,7 @@ # Usage: $0 [] [ ...] # $0 [] --play [--batch] [-w ] [-o ] [field=value ...] -__version__ = '1.5.1' +__version__ = '1.5.2' __version_info__ = 'saul.pw/VisiData v' + __version__ import os diff --git a/setup.py b/setup.py index 55a87042e..09f59d00b 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup # tox can't actually run python3 setup.py: https://github.com/tox-dev/tox/issues/96 #from visidata import __version__ -__version__ = '1.5.1' +__version__ = '1.5.2' setup(name='visidata', version=__version__, diff --git a/visidata/vdtui.py b/visidata/vdtui.py index 889d6760f..c2b7278c7 100755 --- a/visidata/vdtui.py +++ b/visidata/vdtui.py @@ -26,7 +26,7 @@ # Just include this whole file in your project as-is. If you do make # modifications, please keep the base vdtui version and append your own id and # version. -__version__ = '1.5.1' +__version__ = '1.5.2' __version_info__ = 'saul.pw/vdtui v' + __version__ __author__ = 'Saul Pwanson ' __license__ = 'MIT'