From 6b36c5bcceb5b7ff53b9d9b8625f17665a6b39e6 Mon Sep 17 00:00:00 2001 From: anjakefala Date: Thu, 21 Jul 2022 09:38:01 -0700 Subject: [PATCH] [dev] bump to v2.9.1 --- CHANGELOG.md | 4 ++++ README.md | 2 +- setup.py | 2 +- visidata/__init__.py | 2 +- visidata/main.py | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index faed615b1..18895d707 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # VisiData version history +# v2.9.1 (2022-07-21) + +- [unzip-http] move urllib3 to optional dependencies + # 2.9 (2022-07-20) - [ux] add confirming modal dialog diff --git a/README.md b/README.md index 1ca7074a0..c6da49049 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# 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) +# VisiData v2.9.1 [![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) A terminal interface for exploring and arranging tabular data. diff --git a/setup.py b/setup.py index 27ff64b04..6eda12025 100755 --- a/setup.py +++ b/setup.py @@ -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__ = '2.9' +__version__ = '2.9.1' setup(name='visidata', version=__version__, diff --git a/visidata/__init__.py b/visidata/__init__.py index 5e6aec0f1..a73ca2ce6 100644 --- a/visidata/__init__.py +++ b/visidata/__init__.py @@ -1,6 +1,6 @@ 'VisiData: a curses interface for exploring and arranging tabular data' -__version__ = '2.9' +__version__ = '2.9.1' __version_info__ = 'VisiData v' + __version__ __author__ = 'Saul Pwanson ' __status__ = 'Production/Stable' diff --git a/visidata/main.py b/visidata/main.py index 2c51b6a94..b63a914e2 100755 --- a/visidata/main.py +++ b/visidata/main.py @@ -2,7 +2,7 @@ # Usage: $0 [] [ ...] # $0 [] --play [--batch] [-w ] [-o ] [field=value ...] -__version__ = '2.9' +__version__ = '2.9.1' __version_info__ = 'saul.pw/VisiData v' + __version__ from copy import copy