From 5afcf8938f4df8a6c12e32e166d159dbdc299ceb Mon Sep 17 00:00:00 2001 From: iver56 Date: Thu, 9 Jan 2025 13:34:14 +0100 Subject: [PATCH] Release v0.11.2 --- README.md | 8 ++++++++ torch_audiomentations/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 84d362b9..bb714ccc 100644 --- a/README.md +++ b/README.md @@ -217,6 +217,14 @@ classification. It was successfully applied in the paper * Add new transforms: `Mix`, `Padding`, `RandomCrop` and `SpliceOut` +## [v0.11.2] - 2025-01-09 + +### Fixed + +* Fix a device-related bug in `transform_parameters` when training on multiple GPUs +* Fix a shape-related edge case bug in `AddColoredNoise` +* Fix a bug where an incompatible Path data type was passed to torchaudio.info + ## [v0.11.1] - 2024-02-07 ### Changed diff --git a/torch_audiomentations/__init__.py b/torch_audiomentations/__init__.py index 7100fb44..b18c57b2 100644 --- a/torch_audiomentations/__init__.py +++ b/torch_audiomentations/__init__.py @@ -18,4 +18,4 @@ from .utils.config import from_dict, from_yaml from .utils.convolution import convolve -__version__ = "0.11.1" +__version__ = "0.11.2"