Skip to content

Commit

Permalink
Release v0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
iver56 committed Feb 7, 2024
1 parent 7875e5f commit ca85fcc
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,19 @@ classification. It was successfully applied in the paper

* Add new transforms: `Mix`, `Padding`, `RandomCrop` and `SpliceOut`

## [v0.11.1] - 2024-02-07

### Changed

* Add support for constant cutoff frequency in `LowPassFilter` and `HighPassFilter`
* Add support for min_f_decay==max_f_decay in `AddColoredNoise`
* Bump torchaudio dependency from >=0.7.0 to >=0.9.0

### Fixed

* Fix inaccurate type hints in `Shift`
* Remove `set_backend` to avoid `UserWarning` from torchaudio

## [v0.11.0] - 2022-06-29

### Added
Expand Down
2 changes: 1 addition & 1 deletion scripts/demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
PitchShift,
BandStopFilter,
TimeInversion,
Padding,
Identity,
)
from torch_audiomentations.augmentations.padding import Padding
from torch_audiomentations.augmentations.shuffle_channels import ShuffleChannels
from torch_audiomentations.augmentations.splice_out import SpliceOut
from torch_audiomentations.core.transforms_interface import ModeNotSupportedException
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def find_version(*file_paths):
"julius>=0.2.3,<0.3",
"librosa>=0.6.0",
"torch>=1.7.0",
"torchaudio>=0.7.0",
"torchaudio>=0.9.0",
"torch-pitch-shift>=1.2.2",
],
extras_require={"extras": ["PyYAML"]},
Expand Down
2 changes: 1 addition & 1 deletion torch_audiomentations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
from .utils.config import from_dict, from_yaml
from .utils.convolution import convolve

__version__ = "0.11.0"
__version__ = "0.11.1"

0 comments on commit ca85fcc

Please sign in to comment.