Skip to content

Commit

Permalink
[2.0.1] bump version to 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
anjakefala committed Oct 13, 2020
1 parent d1cc789 commit d67612c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__,
Expand Down
2 changes: 1 addition & 1 deletion visidata/__init__.py
Original file line number Diff line number Diff line change
@@ -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 <vd@saul.pw>'
__status__ = 'Production/Stable'
Expand Down
2 changes: 1 addition & 1 deletion visidata/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Usage: $0 [<options>] [<input> ...]
# $0 [<options>] --play <cmdlog> [--batch] [-w <waitsecs>] [-o <output>] [field=value ...]

__version__ = '2.0'
__version__ = '2.0.1'
__version_info__ = 'saul.pw/VisiData v' + __version__

from copy import copy
Expand Down

0 comments on commit d67612c

Please sign in to comment.