Skip to content

Commit

Permalink
RELEASE: 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbannon committed Oct 23, 2015
1 parent 447e452 commit 5511469
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
13 changes: 8 additions & 5 deletions VERSION_HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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):

This comment has been minimized.

Copy link
@crantila

crantila Dec 6, 2015

Member

I know it's a moot point by now, but these three "2.x.0" features have been part of releases since at least 2.2.

- 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
Expand Down Expand Up @@ -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)
4 changes: 2 additions & 2 deletions vis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
_MAJOR = 2
_MINOR = 2
_PATCH = 1
_MINOR = 3
_PATCH = 0
__version__ = '{}.{}.{}'.format(_MAJOR, _MINOR, _PATCH)

0 comments on commit 5511469

Please sign in to comment.