Skip to content

Commit

Permalink
[build] bump to v3.1.1 #2562
Browse files Browse the repository at this point in the history
  • Loading branch information
anjakefala committed Oct 14, 2024
1 parent c04aa14 commit 1054f9d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions dev/checklists/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
Push to pypi
```
rm -rf dist/
rm -rf build/
python3 setup.py sdist bdist_wheel
chmod -R a+rX dist
ls dist/
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# tox can't actually run python3 setup.py: https://github.com/tox-dev/tox/issues/96
# from visidata import __version__
__version__ = "3.1"
__version__ = "3.1.1"

setup(
name="visidata",
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__ = '3.1'
__version__ = '3.1.1'
__version_info__ = 'VisiData v' + __version__
__author__ = 'Saul Pwanson <[email protected]>'
__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__ = '3.1'
__version__ = '3.1.1'
__version_info__ = 'saul.pw/VisiData v' + __version__

from copy import copy
Expand Down

0 comments on commit 1054f9d

Please sign in to comment.