diff --git a/CHANGELOG.md b/CHANGELOG.md index 636cdf923..125403380 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # VisiData version history +# v2.0.1 (2020-10-13) + +## Bugfixes + - Fix printing of motd to status + # v2.0 (2020-10-12) ## Additions and Improvements diff --git a/README.md b/README.md index 5da1eb3ea..2d5f87c28 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/saulpw/visidata) -# VisiData v2.0 [![CircleCI](https://circleci.com/gh/saulpw/visidata/tree/develop.svg?style=svg)](https://circleci.com/gh/saulpw/visidata/tree/develop) +# VisiData v2.0.1 [![CircleCI](https://circleci.com/gh/saulpw/visidata/tree/develop.svg?style=svg)](https://circleci.com/gh/saulpw/visidata/tree/develop) A terminal interface for exploring and arranging tabular data. diff --git a/setup.py b/setup.py index dccac273c..9833bf4de 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__ = '2.0' +__version__ = '2.0.1' setup(name='visidata', version=__version__, diff --git a/visidata/__init__.py b/visidata/__init__.py index 55a95030b..683ac419a 100644 --- a/visidata/__init__.py +++ b/visidata/__init__.py @@ -1,6 +1,6 @@ 'VisiData: a curses interface for exploring and arranging tabular data' -__version__ = '2.0' +__version__ = '2.0.1' __version_info__ = 'VisiData v' + __version__ __author__ = 'Saul Pwanson ' __status__ = 'Production/Stable' diff --git a/visidata/main.py b/visidata/main.py index 5ebda7dd4..fda66ce34 100755 --- a/visidata/main.py +++ b/visidata/main.py @@ -2,7 +2,7 @@ # Usage: $0 [] [ ...] # $0 [] --play [--batch] [-w ] [-o ] [field=value ...] -__version__ = '2.0' +__version__ = '2.0.1' __version_info__ = 'saul.pw/VisiData v' + __version__ from copy import copy