From fb546f32965d45cb0554da065eebd9b9d61f5a83 Mon Sep 17 00:00:00 2001 From: iver56 Date: Thu, 12 Jan 2023 13:57:42 +0100 Subject: [PATCH] Release v0.28.0 --- audiomentations/__init__.py | 2 +- docs/changelog.md | 22 +++++++++++++++++++++- pytest.ini | 1 + 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/audiomentations/__init__.py b/audiomentations/__init__.py index 03adade9..e5de3e7b 100644 --- a/audiomentations/__init__.py +++ b/audiomentations/__init__.py @@ -36,4 +36,4 @@ from .spec_augmentations.spec_channel_shuffle import SpecChannelShuffle from .spec_augmentations.spec_frequency_mask import SpecFrequencyMask -__version__ = "0.27.0" +__version__ = "0.28.0" diff --git a/docs/changelog.md b/docs/changelog.md index e532203c..06e6e7f5 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.28.0] - 2023-01-12 + +### Added + +* Add/improve type hints +* Add/improve documentation + +### Fixed + +* Fix a bug in `RoomSimulator` where the value of `max_order` was not respected + +### Removed + +* Remove `FrequencyMask` that had been deprecated since version 0.22.0. `BandStopFilter` is a good alternative. + ## [0.27.0] - 2022-09-13 ### Changed @@ -110,6 +125,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Improve speed of `PitchShift` by 6-18% when the input audio is stereo +### Deprecated + +* Deprecate `FrequencyMask` in favor of `BandStopFilter` + ### Removed * Remove support for librosa<=0.7.2 @@ -395,7 +414,8 @@ Thanks to karpnv * Initial release. Includes only one transform: `AddGaussianNoise` -[Unreleased]: https://github.com/iver56/audiomentations/compare/v0.27.0...HEAD +[Unreleased]: https://github.com/iver56/audiomentations/compare/v0.28.0...HEAD +[0.28.0]: https://github.com/iver56/audiomentations/compare/v0.27.0...v0.28.0 [0.27.0]: https://github.com/iver56/audiomentations/compare/v0.26.0...v0.27.0 [0.26.0]: https://github.com/iver56/audiomentations/compare/v0.25.1...v0.26.0 [0.25.1]: https://github.com/iver56/audiomentations/compare/v0.25.0...v0.25.1 diff --git a/pytest.ini b/pytest.ini index 3fbb21ed..ea9dfbed 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,3 +1,4 @@ [pytest] python_files=test*.py +norecursedirs = .circleci .git .github .idea audiomentations.egg-info build dist docs site addopts=--cov audiomentations --cov-report=xml