From 5bd307e37fba093ad1c52080bd0cd782475dc1b1 Mon Sep 17 00:00:00 2001 From: Ryan Bannon Date: Tue, 4 Oct 2016 17:19:26 -0400 Subject: [PATCH] RELEASE: 2.4.5 - fixed 'request' python package req. --- 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 6b2dc9ce..8d6583b6 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.5: + - added 'requests' python package req. + * 2.4.4: - replace 2.4.4 - was missing Outputlilypond (very sorry) diff --git a/vis/__init__.py b/vis/__init__.py index 34ce8cc9..ab4b39ae 100755 --- a/vis/__init__.py +++ b/vis/__init__.py @@ -1,4 +1,4 @@ _MAJOR = 2 _MINOR = 4 -_PATCH = 4 +_PATCH = 5 __version__ = '{}.{}.{}'.format(_MAJOR, _MINOR, _PATCH)