Skip to content

Commit

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

# Changelog

## [0.35.0] - 2024-03-15
## [0.36.0] - 2024-06-10

### Added

* Add new transforms: `AddColorNoise`, `Aliasing` and `BitCrush`
* Add support for multichannel impulse responses in `ApplyImpulseResponse`

### 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.

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

Expand Down
2 changes: 1 addition & 1 deletion audiomentations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@
from .spec_augmentations.spec_channel_shuffle import SpecChannelShuffle
from .spec_augmentations.spec_frequency_mask import SpecFrequencyMask

__version__ = "0.35.0"
__version__ = "0.36.0"
12 changes: 12 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ 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.0] - 2024-06-10

### Added

* Add support for multichannel impulse responses in `ApplyImpulseResponse`

### 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.

## [0.35.0] - 2024-03-15

### Added
Expand Down

0 comments on commit d4e2b20

Please sign in to comment.