diff --git a/docs/changes.rst b/docs/changes.rst index ca6c1a63..fd3be2be 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,6 +1,15 @@ Changes ======= +v0.7 +---- + +- `#334`_: Support notation for unknown/ambiguous key or mode +- `#343`_: Add suite of alignment metrics + +.. _#334: https://github.com/craffel/mir_eval/pull/334 +.. _#343: https://github.com/craffel/mir_eval/pull/343 + v0.6 ---- diff --git a/docs/conf.py b/docs/conf.py index a6e24e0f..6c6c127d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,9 +57,9 @@ # built documents. # # The short X.Y version. -version = '0.6' +version = '0.7' # The full version, including alpha/beta/rc tags. -release = '0.6' +release = '0.7' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/mir_eval/__init__.py b/mir_eval/__init__.py index 5001c95d..bf50c2d7 100644 --- a/mir_eval/__init__.py +++ b/mir_eval/__init__.py @@ -20,4 +20,4 @@ from . import transcription_velocity from . import key -__version__ = '0.6' +__version__ = '0.7' diff --git a/setup.py b/setup.py index 4d1e7f55..5d79d634 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='mir_eval', - version='0.6', + version='0.7', description='Common metrics for common audio/music processing tasks.', author='Colin Raffel', author_email='craffel@gmail.com',