From 3298bc1616fb1b6e2d19a342d56c13bf491c6d15 Mon Sep 17 00:00:00 2001 From: iver56 Date: Mon, 7 Mar 2022 11:23:39 +0100 Subject: [PATCH] Release v0.23.0 --- README.md | 8 +++++--- audiomentations/__init__.py | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b358805b..2054b675 100644 --- a/README.md +++ b/README.md @@ -280,7 +280,7 @@ as peak normalization. ## `Padding` -_To be released in v0.23.0_ +_Added in v0.23.0_ Apply padding to the audio signal - take a fraction of the end or the start of the audio and replace that part with padding. This can be useful for preparing ML models @@ -331,7 +331,7 @@ classification. It was successfully applied in the paper ## `RoomSimulator` -_To be added in v0.23.0_ +_Added in v0.23.0_ A ShoeBox Room Simulator. Simulates a cuboid of parametrized size and average surface absorption coefficient. It also includes a source and microphones in parametrized locations. @@ -413,10 +413,12 @@ As of v0.22.0, all transforms except `AddBackgroundNoise` and `AddShortNoises` s ## Unreleased +## v0.23.0 (2022-03-07) + ### Added * Add `Padding` transform -* Implemented `RoomSimulator` for simulating shoebox rooms using `pyroomacoustics`. +* Add `RoomSimulator` transform for simulating shoebox rooms using `pyroomacoustics` * Add parameter `signal_gain_in_db_during_noise` in `AddShortNoises` ### Changed diff --git a/audiomentations/__init__.py b/audiomentations/__init__.py index cb2dcfd9..7bf463ba 100644 --- a/audiomentations/__init__.py +++ b/audiomentations/__init__.py @@ -33,4 +33,4 @@ from .spec_augmentations.spec_frequency_mask import SpecFrequencyMask from .augmentations.room_simulator import RoomSimulator -__version__ = "0.22.0" +__version__ = "0.23.0"