From ace3237dba75b9cf5d4e4d57638681249f33edcc Mon Sep 17 00:00:00 2001 From: iver56 Date: Mon, 11 Oct 2021 08:44:38 +0200 Subject: [PATCH] Release v0.9.0 --- README.md | 6 ++++-- torch_audiomentations/__init__.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 46e52039..8edeabd9 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,7 @@ Convolve the given audio with impulse responses. ## BandPassFilter -_To be added in v0.9.0_ +_Added in v0.9.0_ Apply band-pass filtering to the input audio. @@ -143,7 +143,7 @@ untouched. ## PitchShift -_To be added in v0.9.0_ +_Added in v0.9.0_ Pitch-shift sounds up or down without changing the tempo. @@ -178,6 +178,8 @@ If the input audio is mono, this transform does nothing except emit a warning. ## Unreleased +## [v0.9.0] - 2021-10-11 + ### Added * Add parameter `compensate_for_propagation_delay` in `ApplyImpulseResponse` diff --git a/torch_audiomentations/__init__.py b/torch_audiomentations/__init__.py index b8391acc..657ccd74 100644 --- a/torch_audiomentations/__init__.py +++ b/torch_audiomentations/__init__.py @@ -14,4 +14,4 @@ from .utils.config import from_dict, from_yaml from .utils.convolution import convolve -__version__ = "0.8.0" +__version__ = "0.9.0"