From d4e2b203e4d8e9cdc8360c5f33a3cb037b69935d Mon Sep 17 00:00:00 2001 From: iver56 Date: Mon, 10 Jun 2024 13:44:43 +0200 Subject: [PATCH] Release v0.36.0 --- README.md | 10 ++++++++-- audiomentations/__init__.py | 2 +- docs/changelog.md | 12 ++++++++++++ 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 759f5adb..75c422b4 100644 --- a/README.md +++ b/README.md @@ -93,11 +93,17 @@ The API documentation, along with guides, example code, illustrations and exampl # Changelog -## [0.35.0] - 2024-03-15 +## [0.36.0] - 2024-06-10 ### Added -* Add new transforms: `AddColorNoise`, `Aliasing` and `BitCrush` +* Add support for multichannel impulse responses in `ApplyImpulseResponse` + +### Changed + +* :warning: `Limiter` no longer introduces delay. This is a backwards-incompatible change. +* Make `RoomSimulator` faster by avoiding unneeded calculations when the transform is not going to be applied (p<1) +* Limit scipy dependency to <1.13 because 1.13 is not compatible for now. For the full changelog, including older versions, see [https://iver56.github.io/audiomentations/changelog/](https://iver56.github.io/audiomentations/changelog/) diff --git a/audiomentations/__init__.py b/audiomentations/__init__.py index 28daf668..f569b619 100644 --- a/audiomentations/__init__.py +++ b/audiomentations/__init__.py @@ -41,4 +41,4 @@ from .spec_augmentations.spec_channel_shuffle import SpecChannelShuffle from .spec_augmentations.spec_frequency_mask import SpecFrequencyMask -__version__ = "0.35.0" +__version__ = "0.36.0" diff --git a/docs/changelog.md b/docs/changelog.md index edd4c238..12b01cfc 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -5,6 +5,18 @@ 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.36.0] - 2024-06-10 + +### Added + +* Add support for multichannel impulse responses in `ApplyImpulseResponse` + +### Changed + +* :warning: `Limiter` no longer introduces delay. This is a backwards-incompatible change. +* Make `RoomSimulator` faster by avoiding unneeded calculations when the transform is not going to be applied (p<1) +* Limit scipy dependency to <1.13 because 1.13 is not compatible for now. + ## [0.35.0] - 2024-03-15 ### Added