Skip to content

Commit 19609e6

Browse files
committed
Release v0.43.1
1 parent 237ca2b commit 19609e6

File tree

3 files changed

+12
-16
lines changed

3 files changed

+12
-16
lines changed

README.md

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -91,23 +91,11 @@ The API documentation, along with guides, example code, illustrations and exampl
9191

9292
# Changelog
9393

94-
## [0.43.0] - 2025-09-09
94+
## [0.43.1] - 2025-09-13
9595

96-
### Changed
96+
### Fixed
9797

98-
* Make `LoudnessNormalization` **400% faster** by switching from pyloudnorm to the new and faster alternative [loudness](https://github.com/iver56/loudness)
99-
* Improve `AddBackgroundNoise` performance: Only load/decode the part of the noise file that is needed, instead of the entire file.
100-
* Bump min Python version to 3.10
101-
* Switch to a more modern type hint style
102-
103-
### Deprecated
104-
105-
* Deprecate `"pydub"` backend in `Mp3Compression`, because pydub isn't maintained anymore, and depends on audioop, which got removed in Python 3.13. The recommended alternative is `"fast-mp3-augment"`
106-
107-
### Removed
108-
109-
* Remove upper Python version limit to avoid hindering early adopters
110-
* Remove LRU cache in `AddBackgroundNoise`, due to the changed way of loading audio, and because such audio datasets are commonly larger than RAM anyway
98+
* Fix a bug introduced in 0.43.0 where the noise added by `AddBackgroundNoise` had wrong offset if the noise was longer than the given signal.
11199

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

audiomentations/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@
3939
from .augmentations.trim import Trim
4040
from .core.composition import Compose, OneOf, SomeOf
4141

42-
__version__ = "0.43.0"
42+
__version__ = "0.43.1"

docs/changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.43.1] - 2025-09-13
9+
10+
### Fixed
11+
12+
* Fix a bug introduced in 0.43.0 where the noise added by `AddBackgroundNoise` had wrong offset if the noise was longer than the given signal.
13+
814
## [0.43.0] - 2025-09-09
915

1016
### Changed
@@ -700,6 +706,8 @@ Thanks to karpnv
700706

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

709+
[0.43.0]: https://github.com/iver56/audiomentations/compare/v0.43.0...v0.43.1
710+
703711
[0.43.0]: https://github.com/iver56/audiomentations/compare/v0.42.0...v0.43.0
704712

705713
[0.42.0]: https://github.com/iver56/audiomentations/compare/v0.41.0...v0.42.0

0 commit comments

Comments
 (0)