diff --git a/README.md b/README.md index aa8e9d69..f77d432f 100644 --- a/README.md +++ b/README.md @@ -276,6 +276,12 @@ _The following table is valid for v0.14.0 only_ # Version history +## v0.15.0 (2020-12-10) + +* Fix picklability of instances of `AddImpulseResponse`, `AddBackgroundNoise` + and `AddShortNoises` +* Add an option `leave_length_unchanged` to `AddImpulseResponse` + ## v0.14.0 (2020-12-06) * Implement `LoudnessNormalization` diff --git a/audiomentations/__init__.py b/audiomentations/__init__.py index 4f0e0e59..f816fa1d 100644 --- a/audiomentations/__init__.py +++ b/audiomentations/__init__.py @@ -21,4 +21,4 @@ ) from .core.composition import Compose -__version__ = "0.14.0" +__version__ = "0.15.0"