From 4c424f6c11924c8ba8d1fde2d084420c1aedb840 Mon Sep 17 00:00:00 2001 From: Ryan Bannon Date: Tue, 4 Oct 2016 10:52:38 -0400 Subject: [PATCH] RELEASE: 3.0.1 --- VERSION_HISTORY.md | 6 +++++- vis/__init__.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/VERSION_HISTORY.md b/VERSION_HISTORY.md index bdb7cf9b..53c90935 100755 --- a/VERSION_HISTORY.md +++ b/VERSION_HISTORY.md @@ -3,6 +3,10 @@ VERSION HISTORY This file records version-to-version changes in the VIS Framework. The most recent versions are at the top of the file. +* 3.0.1: + -Fixed 'requests' library requirement. + -Disabled test cases that depend on external DB. + * 3.0.0: -Iterative caching of most indexer results run on any given indexed_piece object -Optimized application of indexer_functions resulting in large indexing speed boost @@ -117,4 +121,4 @@ the top of the file. - minor change so vis-framework will install successfully with pip * 1.0.0: - 2014/03/24 at 01h17 (commit 2ccf5f142b7f75b8fbda82bb6bb29ef071010c5b) - - initial release on PyPI (the Python Package Index) \ No newline at end of file + - initial release on PyPI (the Python Package Index) diff --git a/vis/__init__.py b/vis/__init__.py index e4b07998..249fb74d 100755 --- a/vis/__init__.py +++ b/vis/__init__.py @@ -1,4 +1,4 @@ _MAJOR = 3 _MINOR = 0 -_PATCH = 0 +_PATCH = 1 __version__ = '{}.{}.{}'.format(_MAJOR, _MINOR, _PATCH)