From 5511469ff067cc95d00b3730892af69fcb58de97 Mon Sep 17 00:00:00 2001 From: Michael Ryan Bannon Date: Fri, 23 Oct 2015 12:08:29 -0400 Subject: [PATCH] RELEASE: 2.3.0 --- VERSION_HISTORY.md | 13 ++++++++----- vis/__init__.py | 4 ++-- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/VERSION_HISTORY.md b/VERSION_HISTORY.md index 7241cc3e..18bf6108 100755 --- a/VERSION_HISTORY.md +++ b/VERSION_HISTORY.md @@ -3,13 +3,16 @@ 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.3.0 (pending release): +* 2.x.0 (pending release): - Importing no longer uses/stores cached pickle files. - WorkflowManager.output() produces many table-format results if "count frequency" is False. - WorkflowManager.output() changes the column name for table-like outputs, according to the experiment. - - Greatly improved API documentation. -* 2.2.1: - - set music21 version to 2.1.2 exclusively +* 2.3.0: + - support for interval direction, i.e. an 'M3' is a '-M3' if the interval is between two voices that are crossed with respect to their staff position + - inclusion of experimental qualityControl file in scripts which can be used to make sure that a file can be imported by music21 and to run a basic verification that the parts line up properly + - begin tracking experimental MedievalNoteRestIndexer script in scripts folder + - basic testing suite for DissonanceIndexer + - tons of docs improvements (thanks @maxalbert) * 2.2.0: - Python 3 compatibility. - New: hierarchical clustering and dendrogram graphical output with dendrogram.py @@ -86,4 +89,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) + - initial release on PyPI (the Python Package Index) \ No newline at end of file diff --git a/vis/__init__.py b/vis/__init__.py index 2d5c18b6..86a71f0a 100755 --- a/vis/__init__.py +++ b/vis/__init__.py @@ -1,4 +1,4 @@ _MAJOR = 2 -_MINOR = 2 -_PATCH = 1 +_MINOR = 3 +_PATCH = 0 __version__ = '{}.{}.{}'.format(_MAJOR, _MINOR, _PATCH)