Skip to content

Commit

Permalink
[1.2.1] Documentation and version updates for release
Browse files Browse the repository at this point in the history
  • Loading branch information
anjakefala committed Jul 7, 2018
1 parent 87e6062 commit e8c4c14
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 10 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

# v1.2.1 (2018-07-05)

- python 3.7
- Change `async` decorator to `asyncthread` and rename `async.py` for Python 3.7 support

# v1.2 (2018-04-30)

- macro system
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.2 [![CircleCI](https://circleci.com/gh/saulpw/visidata/tree/stable.svg?style=svg)](https://circleci.com/gh/saulpw/visidata/tree/stable)
# VisiData v1.2.1 [![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.2'
__version__ = '1.2.1'
__version_info__ = 'saul.pw/VisiData v' + __version__

import os
Expand Down
2 changes: 1 addition & 1 deletion dev/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ git push --tags
16. Comb through issues and close the ones that have been solved, referencing the version number
17. Post release notes on r/visidata and tinyletter and have some ice cream
17. Post release notes on tinyletter and twitter and have some ice cream
# conda
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.2'
__version__ = '1.2.1'

setup(name='visidata',
version=__version__,
Expand Down
4 changes: 2 additions & 2 deletions visidata/man/vd.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.Dd April 30, 2018
.Dd July 05, 2018
.Dt vd \&1 "Quick Reference Guide"
.Os Linux/MacOS
.
Expand Down Expand Up @@ -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.2"
.It Sy --motd-url Ns = Ns Ar "str " No "http://visidata.org/motd-1.2.1"
source of randomized startup messages
.It Sy --csv-dialect Ns = Ns Ar "str " No "excel"
dialect passed to csv.reader
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 30, 2018
.Dd July 05, 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.2'
__version__ = '1.2.1'
__version_info__ = 'saul.pw/vdtui v' + __version__
__author__ = 'Saul Pwanson <[email protected]>'
__license__ = 'MIT'
Expand Down
4 changes: 2 additions & 2 deletions www/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# VisiData

## Latest Version: [1.2 (released 2018-05-02)](/releases)
## Latest Version: [1.2.1 (released 2018-07-05)](/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 All @@ -23,7 +23,7 @@ It's great for investigative journalists, data scientists, unix command-line use

## Recent Updates

- **2018-04-30: [Visidata v1.2](/releases#v1.2) has been released!**
- **2018-07-05: [Visidata v1.2.1](/releases#v1.2.1) has been released!**

- 2018-04-01: Released the [first of five VisiData case study videos](https://www.youtube.com/watch?v=yhunJc8Nu4g&list=PLxu7QdBkC7drrAGfYzatPGVHIpv4Et46W&index=3).

Expand Down

0 comments on commit e8c4c14

Please sign in to comment.