From 62007f457c765addc3c5d82757e4a8ad1bcc60a6 Mon Sep 17 00:00:00 2001 From: Saul Pwanson Date: Mon, 14 Oct 2024 09:07:37 -0700 Subject: [PATCH] [dev] bump version to 3.2dev --- CHANGELOG.md | 2 +- visidata/__init__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6043fd368..843586989 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # VisiData version history -# v3.1 (2024-10-XX) +# v3.1 (2024-10-14) - drop support for Python 3.7 #2231 - [vdsql] bump ibis dep to v8 diff --git a/visidata/__init__.py b/visidata/__init__.py index d22b5b586..55930c051 100644 --- a/visidata/__init__.py +++ b/visidata/__init__.py @@ -1,10 +1,10 @@ 'VisiData: a curses interface for exploring and arranging tabular data' -__version__ = '3.1dev' +__version__ = '3.2dev' __version_info__ = 'VisiData v' + __version__ __author__ = 'Saul Pwanson ' __status__ = 'Production/Stable' -__copyright__ = 'Copyright (c) 2016-2021 ' + __author__ +__copyright__ = 'Copyright (c) 2016-2024 ' + __author__ class EscapeException(BaseException):