Skip to content

Commit

Permalink
Bump version to 0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
craffel committed Apr 9, 2020
1 parent ac94d1c commit ffb77ba
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 4 deletions.
31 changes: 31 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,37 @@
Changes
=======

v0.6
----

- `#297`_: Return 0 when no overlap in transcription_velocity
- `#299`_: Allow one reference tempo and both estimate tempi to be zero
- `#301`_: Allow zero tolerance in tempo, but issue a warning
- `#302`_: Loosen separation test tolerance
- `#305`_: Use toarray instead of todense for sparse matrices
- `#307`_: Use tuple index in chord.rotate_bitmap_to_root
- `#309`_: Require matplotlib <3 for testing
- `#312`_: Fix raw chroma accuracy for unvoiced estimates
- `#320`_: Add comment support to io methods
- `#323`_: Fix interpolation in sonify.time_frequency
- `#324`_: Add generalized melody metrics
- `#327`_: Stop testing 2.7
- `#328`_: Cast n_voiced to int in display.multipitch

.. _#297: https://github.com/craffel/mir_eval/pull/297
.. _#299: https://github.com/craffel/mir_eval/pull/299
.. _#301: https://github.com/craffel/mir_eval/pull/301
.. _#302: https://github.com/craffel/mir_eval/pull/302
.. _#305: https://github.com/craffel/mir_eval/pull/305
.. _#307: https://github.com/craffel/mir_eval/pull/307
.. _#309: https://github.com/craffel/mir_eval/pull/309
.. _#312: https://github.com/craffel/mir_eval/pull/312
.. _#320: https://github.com/craffel/mir_eval/pull/320
.. _#323: https://github.com/craffel/mir_eval/pull/323
.. _#324: https://github.com/craffel/mir_eval/pull/324
.. _#327: https://github.com/craffel/mir_eval/pull/327
.. _#328: https://github.com/craffel/mir_eval/pull/328

v0.5
----

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
# built documents.
#
# The short X.Y version.
version = '0.5'
version = '0.6'
# The full version, including alpha/beta/rc tags.
release = '0.5'
release = '0.6'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion mir_eval/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
from . import transcription_velocity
from . import key

__version__ = '0.5'
__version__ = '0.6'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='mir_eval',
version='0.5',
version='0.6',
description='Common metrics for common audio/music processing tasks.',
author='Colin Raffel',
author_email='craffel@gmail.com',
Expand Down

0 comments on commit ffb77ba

Please sign in to comment.