Skip to content

Commit

Permalink
Release v0.36.1
Browse files Browse the repository at this point in the history
  • Loading branch information
iver56 committed Aug 20, 2024
1 parent 0e11c80 commit 73c4899
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,17 +93,11 @@ The API documentation, along with guides, example code, illustrations and exampl

# Changelog

## [0.36.0] - 2024-06-10

### Added

* Add support for multichannel impulse responses in `ApplyImpulseResponse`
## [0.36.1] - 2024-08-20

### Changed

* :warning: `Limiter` no longer introduces delay. This is a backwards-incompatible change.
* Make `RoomSimulator` faster by avoiding unneeded calculations when the transform is not going to be applied (p<1)
* Limit scipy dependency to <1.13 because 1.13 is not compatible for now.
* Leverage the SIMD-accelerated [numpy-rms](https://pypi.org/project/numpy-rms/) package for significant speed improvements. These transforms are faster now: `AddBackgroundNoise`, `AddColorNoise`, `AddGaussianSNR`, `AddShortNoises`, `Mp3Compression` and `TanhDistortion`.

For the full changelog, including older versions, see [https://iver56.github.io/audiomentations/changelog/](https://iver56.github.io/audiomentations/changelog/)

Expand Down
5 changes: 1 addition & 4 deletions audiomentations/augmentations/add_gaussian_snr.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@
from numpy.typing import NDArray

from audiomentations.core.transforms_interface import BaseWaveformTransform
from audiomentations.core.utils import (
calculate_desired_noise_rms,
calculate_rms,
)
from audiomentations.core.utils import calculate_desired_noise_rms, calculate_rms


class AddGaussianSNR(BaseWaveformTransform):
Expand Down
7 changes: 7 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.36.1] - 2024-08-20

### Changed

* Leverage the SIMD-accelerated [numpy-rms](https://pypi.org/project/numpy-rms/) package for significant speed improvements. These transforms are faster now: `AddBackgroundNoise`, `AddColorNoise`, `AddGaussianSNR`, `AddShortNoises`, `Mp3Compression` and `TanhDistortion`.

## [0.36.0] - 2024-06-10

### Added
Expand Down Expand Up @@ -517,6 +523,7 @@ Thanks to karpnv

* Initial release. Includes only one transform: `AddGaussianNoise`

[0.36.1]: https://github.com/iver56/audiomentations/compare/v0.36.0...v0.36.1
[0.36.0]: https://github.com/iver56/audiomentations/compare/v0.35.0...v0.36.0
[0.35.0]: https://github.com/iver56/audiomentations/compare/v0.34.1...v0.35.0
[0.34.1]: https://github.com/iver56/audiomentations/compare/v0.33.0...v0.34.1
Expand Down

0 comments on commit 73c4899

Please sign in to comment.