From 5636b5bb0e3152a65962f9251695f6b2799f7ffe Mon Sep 17 00:00:00 2001 From: iver56 Date: Tue, 15 Jun 2021 21:13:25 +0200 Subject: [PATCH] Release v0.8.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 74de5f7a..0b02fcc8 100644 --- a/README.md +++ b/README.md @@ -102,13 +102,13 @@ See also https://en.wikipedia.org/wiki/Clipping_(audio)#Digital_clipping ## HighPassFilter -_To be added in v0.8.0_ +_Added in v0.8.0_ Apply high-pass filtering to the input audio. ## LowPassFilter -_To be added in v0.8.0_ +_Added in v0.8.0_ Apply low-pass filtering to the input audio. @@ -156,6 +156,8 @@ If the input audio is mono, this transform does nothing except emit a warning. ## Unreleased +## [v0.8.0] - 2021-06-15 + ### Added * Implement `HighPassFilter` and `LowPassFilter` diff --git a/torch_audiomentations/__init__.py b/torch_audiomentations/__init__.py index 77515fe1..af0b1764 100644 --- a/torch_audiomentations/__init__.py +++ b/torch_audiomentations/__init__.py @@ -12,4 +12,4 @@ from .utils.config import from_dict, from_yaml from .utils.convolution import convolve -__version__ = "0.7.0" +__version__ = "0.8.0"