diff --git a/README.md b/README.md index 84d362b..bb714cc 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 7100fb4..b18c57b 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"