Skip to content

Commit

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

# Changelog

## [0.34.1] - 2023-11-24
## [0.35.0] - 2024-03-15

### Changed
### Added

* Bump min numpy version from 1.18 to 1.21
* Use numpy.typing in type hints
* Optimize max abs calculations in terms of memory and speed. This makes `Normalize`, `Mp3Compression` and `Limiter` slightly faster.
* Add new transforms: `AddColorNoise`, `Aliasing` and `BitCrush`

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.34.1"
__version__ = "0.35.0"
5 changes: 3 additions & 2 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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).

## Unreleased
## [0.35.0] - 2024-03-15

### Added

Expand Down Expand Up @@ -505,7 +505,8 @@ Thanks to karpnv

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

[Unreleased]: https://github.com/iver56/audiomentations/compare/v0.34.1...HEAD
[Unreleased]: https://github.com/iver56/audiomentations/compare/v0.35.0...HEAD
[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
[0.33.0]: https://github.com/iver56/audiomentations/compare/v0.32.0...v0.33.0
[0.32.0]: https://github.com/iver56/audiomentations/compare/v0.31.0...v0.32.0
Expand Down
2 changes: 1 addition & 1 deletion docs/waveform_transforms/add_color_noise.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# `AddColorNoise`

_To be added in v0.35.0_
_Added in v0.35.0_

Mix in noise with color, optionally weighted by an [A-weighting :octicons-link-external-16:](https://en.wikipedia.org/wiki/A-weighting){target=_blank} curve. When
`f_decay=0`, this is equivalent to `AddGaussianNoise`. Otherwise, see: [Colors of Noise :octicons-link-external-16:](https://en.wikipedia.org/wiki/Colors_of_noise){target=_blank}.
Expand Down
2 changes: 1 addition & 1 deletion docs/waveform_transforms/aliasing.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# `Aliasing`

_To be added in v0.35.0_
_Added in v0.35.0_

Downsample the audio to a lower sample rate by linear interpolation, without low-pass
filtering it first, resulting in aliasing artifacts. You get aliasing artifacts when
Expand Down
2 changes: 1 addition & 1 deletion docs/waveform_transforms/bit_crush.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# `BitCrush`

_To be added in v0.35.0_
_Added in v0.35.0_

Apply a bit crush effect to the audio by reducing the bit depth. In other words, it
reduces the number of bits that can be used for representing each audio sample.
Expand Down

0 comments on commit 3bdbfb2

Please sign in to comment.