Skip to content

Commit

Permalink
Release v0.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iver56 committed Jan 12, 2023
1 parent f7d4b93 commit fb546f3
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
2 changes: 1 addition & 1 deletion audiomentations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@
from .spec_augmentations.spec_channel_shuffle import SpecChannelShuffle
from .spec_augmentations.spec_frequency_mask import SpecFrequencyMask

__version__ = "0.27.0"
__version__ = "0.28.0"
22 changes: 21 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [0.28.0] - 2023-01-12

### Added

* Add/improve type hints
* Add/improve documentation

### Fixed

* Fix a bug in `RoomSimulator` where the value of `max_order` was not respected

### Removed

* Remove `FrequencyMask` that had been deprecated since version 0.22.0. `BandStopFilter` is a good alternative.

## [0.27.0] - 2022-09-13

### Changed
Expand Down Expand Up @@ -110,6 +125,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

* Improve speed of `PitchShift` by 6-18% when the input audio is stereo

### Deprecated

* Deprecate `FrequencyMask` in favor of `BandStopFilter`

### Removed

* Remove support for librosa<=0.7.2
Expand Down Expand Up @@ -395,7 +414,8 @@ Thanks to karpnv

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

[Unreleased]: https://github.com/iver56/audiomentations/compare/v0.27.0...HEAD
[Unreleased]: https://github.com/iver56/audiomentations/compare/v0.28.0...HEAD
[0.28.0]: https://github.com/iver56/audiomentations/compare/v0.27.0...v0.28.0
[0.27.0]: https://github.com/iver56/audiomentations/compare/v0.26.0...v0.27.0
[0.26.0]: https://github.com/iver56/audiomentations/compare/v0.25.1...v0.26.0
[0.25.1]: https://github.com/iver56/audiomentations/compare/v0.25.0...v0.25.1
Expand Down
1 change: 1 addition & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[pytest]
python_files=test*.py
norecursedirs = .circleci .git .github .idea audiomentations.egg-info build dist docs site
addopts=--cov audiomentations --cov-report=xml

0 comments on commit fb546f3

Please sign in to comment.