Skip to content

Commit

Permalink
Hotfix: v0.97.1
Browse files Browse the repository at this point in the history
  • Loading branch information
anjakefala committed Oct 30, 2017
1 parent a6b9dd1 commit c23be06
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# VisiData version history
## 0.97.1 (2017-10-29)
- Fix postgres lazy import
- BugFix: issue #83 - `z?` works on OSX
- BugFix: <Enter> on SheetsSheets itself now does nothing
- Move from readthedocs to visidata.org

## 0.97 (2017-10-05)
- Features
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 v0.97 [![CircleCI](https://circleci.com/gh/saulpw/visidata/tree/stable.svg?style=svg)](https://circleci.com/gh/saulpw/visidata/tree/stable)
# VisiData v0.97.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] [-d <delay>] [-o <output>] [field=value ...]

__version__ = 'saul.pw/VisiData v0.97'
__version__ = 'saul.pw/VisiData v0.97.1'

import os
from visidata import *
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = '0.97'
version = '0.97.1'
# The full version, including alpha/beta/rc tags.
release = '0.97'
release = '0.97.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
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__ = '0.97'
__version__ = '0.97.1'

setup(name='visidata',
version=__version__,
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__ = 'saul.pw/vdtui v0.97'
__version__ = 'saul.pw/vdtui v0.97.1'
__author__ = 'Saul Pwanson <[email protected]>'
__license__ = 'MIT'
__status__ = 'Beta'
Expand Down
2 changes: 1 addition & 1 deletion www/frontpage-body.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ <h1>VisiData</h1>
</div>
<div class="hero-subtag">
<a href="https://github.com/saulpw/visidata/blob/stable/CHANGELOG.md" title="2017-10-02">
<h2>v0.97</h2>
<h2>v0.97.1</h2>
</a>
<h2>Rapidly explore columnar data in the terminal</h2>
</div>
Expand Down

0 comments on commit c23be06

Please sign in to comment.