-------
2023-02-20
New features
- `1485`_ Added support for `"h"` (hours) and `"m"` (minutes) in `librosa.display.TimeFormatter`. *Vincent Lostanlen*
- `1495`_ Expanded options for bandwidth calculation in `librosa.segment.recurrence_matrix` and `librosa.segment.cross_similarity`. *Tom Xi*
- `1529`_ Accelerated utility functions for squared magnitude `librosa.util.abs2` and `librosa.util.phasor`. *Brian McFee*
- `1514`_ `librosa.stft` support for pre-allocated output arrays. *Brian McFee*
- `1533`_ Accelerated `librosa.util.localmax` and `librosa.util.localmin`. *Brian McFee*
- `1552`_ **EXPERIMENTAL** Support for just-intonation based variable-Q transforms `librosa.vqt` and functional just system (FJS) notation. *Brian McFee, Vincent Lostanlen*
- `1579`_ Imports are now done lazily, significantly reducing startup time. It is not longer necessary to explicitly `import librosa.display`. *Brian McFee*
- `1587`_, `1632`_, `1637`_ Type annotations. *Matan Gover, Brian McFee, Fabian Keller*
- `1647`_ Harmonic spectrum interpolation `librosa.f0_harmonics` and tempogram ratio features `librosa.feature.tempogram_ratio`. *Brian McFee*
Bug fixes
- `1560`_ Corrected an error in bandwidth estimation for window functions that take on negative sample values. *Brian McFee*
- `1571`_ Fixed rounding error in multirate filterbank calculation of sampling rates. *Brian McFee*
- `1594`_ Fixed incorrect use of deprecated numpy numerical types. *Mattia Di Gangi*
- `1596`_ Fixed harmonic interpolation for recent scipy releases. *Brian McFee*
API changes
- `1561`_ `librosa.resample` now supports `axis=` for all sample rate conversion backends. *Brian McFee*
- `1572`_ Notation conversion (e.g., `librosa.midi_to_note`) now vectorizes operations, and produces `numpy.ndarray` outputs rather than `list` when given iterable inputs. *Brian McFee*
- `1625`_ Deprecations now raise `FutureWarning` instead of `DeprecationWarning`.
- `1625`_ `librosa.get_duration` parameter `filename` has been renamed to `path`. *Brian McFee*
- `1643`_ Removed support for `threshold=None` in `librosa.zero_crossings`. *Brian McFee*
- `1665`_ Fixed overflow bug in `librosa.feature.rms` on integer inputs. *Brian McFee*
Documentation
- `1520`_ Improved CONTRIBUTING.md documentation. *Kian Eliasi*
- `1531`_ Updated LICENSE.md documentation. *Anton Kostin*
- `1536`_ Added keyword argument (`kwargs`) definitions to docstrings. *Emily Halvachs*
- `1537`_ Improvements to CONTRIBUTING.md. *Juanita Gomez*
- `1545`_ Correction to docstring for `librosa.note_to_midi`. *Helmin Jinoz*
- `1563`_ Improved `librosa.display.specshow` documentation to explain `cmap=` parameter. *Kian Eliasi*
- `1573`_ Improved documentation for `librosa.filters.semitone_filterbank`. *BdeGraff*
- `1586`_ Fixed figure layout in documentation builds. *Brian McFee*
- `1592`_ Fixed incorrect link to the documentation badge in README. *Zvi Baratz*
- `1614`_ Improved documentation for resampling. *Jon Petter Åsen*
Deprecations
- `1521`_ Removed backward compatibility support for positional arguments that are now keyword-only. *Brian McFee*
- `1577`_ Removed official support for python 3.6. *Brian McFee*
- `1625`_ The `audioread` backend is now deprecated and will be removed in a future release. *Brian McFee*
Other changes
- `1501`_ Infer square / equal plot dimensions for compatible x/y axes in `librosa.display.specshow`. *Kian Eliasi*
- `1535`_ Standardized integer type checks throughout the library. *Alexandre Chabot-Leclerc*
- `1539`_ Refactored `librosa.display.AdaptiveWaveplot` to allow callback disconnection. *Brian McFee*
- `1548`_ Removed deprecated `'hanning'` window specification from tests. *Brian McFee*
- `1551`_ Removed dependency on `contextlib2`. *Steve Kowalik*
- `1565`_ Efficiency improvements to `librosa.autocorrelate`. *Brian McFee*
- `1566`_ Changed the default sample rate conversion method from `kaiser_best` (resampy) to `soxr_hq` (soxr). *Brian McFee*
- `1581`_ Updated tests for numpy 1.23 compatibility. *Brian McFee*
- `1617`_ Accelerated `librosa.yin` implementation. *Brian McFee*
- `1640`_ Updated display module dependencies to require matplotlib >= 3.3. *Brian McFee*
- `1643`_ Accelerated `librosa.zero_crossings` implementation. *Brian McFee*
- `1646`_ Added support for transposed (vertical) display of waveforms. *Brian McFee*
.. _1485: https://github.com/librosa/librosa/issues/1485
.. _1495: https://github.com/librosa/librosa/issues/1495
.. _1529: https://github.com/librosa/librosa/issues/1529
.. _1514: https://github.com/librosa/librosa/issues/1514
.. _1533: https://github.com/librosa/librosa/issues/1533
.. _1552: https://github.com/librosa/librosa/issues/1552
.. _1579: https://github.com/librosa/librosa/issues/1579
.. _1637: https://github.com/librosa/librosa/issues/1637
.. _1632: https://github.com/librosa/librosa/issues/1632
.. _1587: https://github.com/librosa/librosa/issues/1587
.. _1647: https://github.com/librosa/librosa/issues/1647
.. _1560: https://github.com/librosa/librosa/issues/1560
.. _1571: https://github.com/librosa/librosa/issues/1571
.. _1594: https://github.com/librosa/librosa/issues/1594
.. _1561: https://github.com/librosa/librosa/issues/1561
.. _1572: https://github.com/librosa/librosa/issues/1572
.. _1520: https://github.com/librosa/librosa/issues/1520
.. _1531: https://github.com/librosa/librosa/issues/1531
.. _1536: https://github.com/librosa/librosa/issues/1536
.. _1537: https://github.com/librosa/librosa/issues/1537
.. _1545: https://github.com/librosa/librosa/issues/1545
.. _1563: https://github.com/librosa/librosa/issues/1563
.. _1586: https://github.com/librosa/librosa/issues/1586
.. _1592: https://github.com/librosa/librosa/issues/1592
.. _1596: https://github.com/librosa/librosa/issues/1596
.. _1521: https://github.com/librosa/librosa/issues/1521
.. _1577: https://github.com/librosa/librosa/issues/1577
.. _1501: https://github.com/librosa/librosa/issues/1501
.. _1535: https://github.com/librosa/librosa/issues/1535
.. _1539: https://github.com/librosa/librosa/issues/1539
.. _1548: https://github.com/librosa/librosa/issues/1548
.. _1551: https://github.com/librosa/librosa/issues/1551
.. _1565: https://github.com/librosa/librosa/issues/1565
.. _1566: https://github.com/librosa/librosa/issues/1566
.. _1581: https://github.com/librosa/librosa/issues/1581
.. _1625: https://github.com/librosa/librosa/issues/1625
.. _1643: https://github.com/librosa/librosa/issues/1643
.. _1573: https://github.com/librosa/librosa/issues/1573
.. _1614: https://github.com/librosa/librosa/issues/1614
.. _1617: https://github.com/librosa/librosa/issues/1617
.. _1640: https://github.com/librosa/librosa/issues/1640
.. _1643: https://github.com/librosa/librosa/issues/1643
.. _1646: https://github.com/librosa/librosa/issues/1646
.. _1665: https://github.com/librosa/librosa/issues/1665