Skip to content

Commit

Permalink
[1.2] Bump version to 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
anjakefala authored and saulpw committed May 1, 2018
1 parent bbe14a8 commit 8d56883
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 11 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# VisiData version history

# v1.2 (2018-04-30)

- macro system
- `gD` goes to directory browser of `options.visidata_dir` (default to `~/.visidata/`) which contains saved commandlogs and macros
- `z^S` on CommandLog saves selected rows to macro for given keystroke, saving to `.visidata/macro/command-longname.vd`
Expand All @@ -17,7 +19,7 @@
- [New conda package](https://github.com/conda-forge/visidata-feedstock)
- add .visidatarc [snippets](https://github.com/saulpw/visidata/tree/stable/snippets) with examples of extra functionality
- add replayable options [#97](https://github.com/saulpw/visidata/issues/97)
- `g^S` for multisave to single file (for formats that support it) or directory
- `g^S` for multisave to single file (`.html`, `.md` and `.txt` are currently supported) or directory
- `z^S` to save selected rows of current column only (along with key columns)
- `T` to transpose rows and columns [#129](https://github.com/saulpw/visidata/issues/129)
- `^A` to specify a command longname to execute
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# VisiData v1.1 [![CircleCI](https://circleci.com/gh/saulpw/visidata/tree/stable.svg?style=svg)](https://circleci.com/gh/saulpw/visidata/tree/stable)
# VisiData v1.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.

Expand Down
2 changes: 1 addition & 1 deletion bin/vd
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Usage: $0 [<options>] [<input> ...]
# $0 [<options>] --play <cmdlog> [--batch] [-w <waitsecs>] [-o <output>] [field=value ...]

__version__ = '1.1'
__version__ = '1.2'
__version_info__ = 'saul.pw/VisiData v' + __version__

import os
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__ = '1.1'
__version__ = '1.2'

setup(name='visidata',
version=__version__,
Expand Down
8 changes: 4 additions & 4 deletions visidata/man/vd.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.Dd April 29, 2018
.Dd April 30, 2018
.Dt vd \&1 "Quick Reference Guide"
.Os Linux/MacOS
.
Expand Down Expand Up @@ -713,7 +713,7 @@ directory to load and store macros
.It Sy --rowkey-prefix Ns = Ns Ar "str " No "\[u30AD]"
string prefix for rowkey in the cmdlog
.It Sy --cmdlog-histfile Ns = Ns Ar "str " No ""
autorecords each cmdlog action to the given file
file to autorecord each cmdlog action to
.It Sy --regex-maxsplit Ns = Ns Ar "int " No "0"
maxsplit to pass to regex.split
.It Sy --show-graph-labels Ns = Ns Ar "bool " No "True"
Expand All @@ -722,7 +722,7 @@ show axes and legend on graph
list of distinct colors to use for plotting distinct objects
.It Sy --zoom-incr Ns = Ns Ar "float " No "2.0"
amount to multiply current zoomlevel when zooming
.It Sy --motd-url Ns = Ns Ar "str " No "http://visidata.org/motd-1.1"
.It Sy --motd-url Ns = Ns Ar "str " No "http://visidata.org/motd-1.2"
source of randomized startup messages
.It Sy --csv-dialect Ns = Ns Ar "str " No "excel"
dialect passed to csv.reader
Expand Down Expand Up @@ -821,7 +821,7 @@ color for file attributes pending modification
color for files pending delete
.It Sy "disp_histogram " No "*"
histogram element character
.It Sy "disp_histolen " No "80"
.It Sy "disp_histolen " No "50"
width of histogram column
.It Sy "disp_replay_play " No "\[u25B6]"
status indicator for active replay
Expand Down
2 changes: 1 addition & 1 deletion visidata/man/vd.inc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.Dd April 29, 2018
.Dd April 30, 2018
.Dt vd \&1 "Quick Reference Guide"
.Os Linux/MacOS
.
Expand Down
2 changes: 1 addition & 1 deletion visidata/vdtui.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.1'
__version__ = '1.2'
__version_info__ = 'saul.pw/vdtui v' + __version__
__author__ = 'Saul Pwanson <[email protected]>'
__license__ = 'MIT'
Expand Down
2 changes: 1 addition & 1 deletion www/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# VisiData

## Latest Version: [1.1 (released 2018-03-05)](/releases)
## Latest Version: [1.2 (released 2018-04-30)](/releases)

VisiData is an interactive multitool for tabular data. It combines the clarity of a spreadsheet, the efficiency of the terminal, and the power of Python, into a lightweight utility which can handle millions of rows with ease.

Expand Down

0 comments on commit 8d56883

Please sign in to comment.