From 2da0e21345d81c1782499f3a1ad20b0dd1919bcb Mon Sep 17 00:00:00 2001 From: iver56 Date: Wed, 21 Jun 2023 09:27:40 +0200 Subject: [PATCH] Release v0.31.0 --- audiomentations/__init__.py | 2 +- docs/changelog.md | 13 ++++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/audiomentations/__init__.py b/audiomentations/__init__.py index 5ae8fbe9..b3b9c2ae 100644 --- a/audiomentations/__init__.py +++ b/audiomentations/__init__.py @@ -37,4 +37,4 @@ from .spec_augmentations.spec_channel_shuffle import SpecChannelShuffle from .spec_augmentations.spec_frequency_mask import SpecFrequencyMask -__version__ = "0.30.0" +__version__ = "0.31.0" diff --git a/docs/changelog.md b/docs/changelog.md index c567ed93..ed96e1ac 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.31.0] - 2023-06-21 + +### Changed + +* Raise exception instead of warning when the given multichannel ndarray has wrong shape +* Add support for the latest librosa 0.10 version +* Switch to a faster resampler internally in pitch shift, leading to much faster execution. This requires `soxr`. +* Bump min `scipy` requirement from 1.0 to 1.3 +* Rename "_in_db" to "_db" in args and parameters. Passing args with the old names still works, but is deprecated and will stop working in a future version. + ## [0.30.0] - 2023-05-02 ### Added @@ -437,7 +447,8 @@ Thanks to karpnv * Initial release. Includes only one transform: `AddGaussianNoise` -[Unreleased]: https://github.com/iver56/audiomentations/compare/v0.30.0...HEAD +[Unreleased]: https://github.com/iver56/audiomentations/compare/v0.31.0...HEAD +[0.31.0]: https://github.com/iver56/audiomentations/compare/v0.30.0...v0.31.0 [0.30.0]: https://github.com/iver56/audiomentations/compare/v0.29.0...v0.30.0 [0.29.0]: https://github.com/iver56/audiomentations/compare/v0.28.0...v0.29.0 [0.28.0]: https://github.com/iver56/audiomentations/compare/v0.27.0...v0.28.0