From 3d592f01b77689b47cc3d40e734e2a353ae1486d Mon Sep 17 00:00:00 2001 From: Alexander Morgan Date: Tue, 15 Mar 2016 15:35:42 -0400 Subject: [PATCH] Release 2.4.1 --- VERSION_HISTORY.md | 3 +++ vis/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/VERSION_HISTORY.md b/VERSION_HISTORY.md index fbd6d52c..709e9be2 100755 --- a/VERSION_HISTORY.md +++ b/VERSION_HISTORY.md @@ -3,6 +3,9 @@ VERSION HISTORY This file records version-to-version changes in the VIS Framework. The most recent versions are at the top of the file. +* 2.4.1: + - Cosmetic changes to more closely comply with Python coding conventions. + * 2.4.0: - Deprecates n-gram indexer. - Adds new_ngram indexer and accompanying tests. diff --git a/vis/__init__.py b/vis/__init__.py index cbaad438..82a5f392 100755 --- a/vis/__init__.py +++ b/vis/__init__.py @@ -1,4 +1,4 @@ _MAJOR = 2 _MINOR = 4 -_PATCH = 0 +_PATCH = 1 __version__ = '{}.{}.{}'.format(_MAJOR, _MINOR, _PATCH)