diff --git a/CONTRIBUTORS b/CONTRIBUTORS index bce5ffa..efe147e 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -3,4 +3,6 @@ Andrés Ferraro aferraro AT dcodesoft DOT com Miguel García Casado miguel DOT garciac AT upf DOT edu - bug fixes Mogens Lundholm mogens AT lundholm.org - - mu2 to musicXML conversion binaries \ No newline at end of file + - mu2 to musicXML conversion binaries + Marina Nieto marina DOT nieto01 AT estudiant DOT upf DOT edu + Teresa Pelinski teresa DOT pelinski01 AT estudiant DOT upf DOT edu \ No newline at end of file diff --git a/Changelog.md b/Changelog.md index 8b80ee8..0c60e26 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,8 @@ # Changelog +## tomato v0.14.2 +- Fix ``theoretical_pitch`` units in ``NoteModel`` class (Pull request [#128](https://github.com/sertansenturk/tomato/pull/128)) + ## tomato v0.14.1 - Bump lxml from 4.4.2 to 4.6.2 (Pull request [#127](https://github.com/sertansenturk/tomato/pull/127)) diff --git a/src/tomato/__init__.py b/src/tomato/__init__.py index f075dd3..745162e 100644 --- a/src/tomato/__init__.py +++ b/src/tomato/__init__.py @@ -1 +1 @@ -__version__ = "0.14.1" +__version__ = "0.14.2" diff --git a/src/tomato/audio/notemodel.py b/src/tomato/audio/notemodel.py index 88f2384..c38b4a8 100644 --- a/src/tomato/audio/notemodel.py +++ b/src/tomato/audio/notemodel.py @@ -86,7 +86,7 @@ def _stable_pitches_to_notes(self, stable_pitches_hz, "theoretical_interval": {"value": note_cent, "unit": "cent"}, "theoretical_pitch": {"value": theoretical_pitch, - "unit": "cent"}, + "unit": "Hz"}, "stable_pitch": {"value": stable_pitch_hz, "unit": "Hz"}} break