Skip to content

Commit e71d924

Browse files
committed
[dev] bump to version v2.9
1 parent 9c8515d commit e71d924

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# VisiData version history
22

3-
# 2.9 (2022-04-XX)
3+
# 2.9 (2022-07-20)
44

55
- [ux] add confirming modal dialog
66
- only "y" required to confirm

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# VisiData v2.8 [![twitter @VisiData][1.1]][1] [![CircleCI](https://circleci.com/gh/saulpw/visidata/tree/stable.svg?style=svg)](https://circleci.com/gh/saulpw/visidata/tree/stable) [![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/saulpw/visidata)
2+
# VisiData v2.9 [![twitter @VisiData][1.1]][1] [![CircleCI](https://circleci.com/gh/saulpw/visidata/tree/stable.svg?style=svg)](https://circleci.com/gh/saulpw/visidata/tree/stable) [![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/saulpw/visidata)
33

44
A terminal interface for exploring and arranging tabular data.
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup
44
# tox can't actually run python3 setup.py: https://github.com/tox-dev/tox/issues/96
55
#from visidata import __version__
6-
__version__ = '2.9dev'
6+
__version__ = '2.9'
77

88
setup(name='visidata',
99
version=__version__,

visidata/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'VisiData: a curses interface for exploring and arranging tabular data'
22

3-
__version__ = '2.9dev'
3+
__version__ = '2.9'
44
__version_info__ = 'VisiData v' + __version__
55
__author__ = 'Saul Pwanson <[email protected]>'
66
__status__ = 'Production/Stable'

visidata/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Usage: $0 [<options>] [<input> ...]
33
# $0 [<options>] --play <cmdlog> [--batch] [-w <waitsecs>] [-o <output>] [field=value ...]
44

5-
__version__ = '2.9dev'
5+
__version__ = '2.9'
66
__version_info__ = 'saul.pw/VisiData v' + __version__
77

88
from copy import copy

0 commit comments

Comments
 (0)