diff --git a/README.md b/README.md index 3f8d9850..da9ffba4 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,7 @@ Audio data augmentation in PyTorch. Inspired by [audiomentations](https://github # Setup -`pip install git+https://github.com/asteroid-team/torch-audiomentations` - -Note: torch-audiomentations will be published on PyPI for easier installation later. +`pip install torch-audiomentations` # Contribute @@ -25,6 +23,12 @@ comparison of the time it takes to run 1D convolution: torch-audiomentations is in a very early development stage, so it's not ready for prime time yet. Meanwhile, star the repo and stay tuned! +# Version history + +## v0.1.0 (2020-10-12) + +Initial release with `Gain` and `PolarityInversion` + # Development ## Setup diff --git a/torch_audiomentations/__init__.py b/torch_audiomentations/__init__.py index a0a59271..14182110 100644 --- a/torch_audiomentations/__init__.py +++ b/torch_audiomentations/__init__.py @@ -1,4 +1,4 @@ from .augmentations.gain import Gain from .augmentations.polarity_inversion import PolarityInversion -__version__ = "0.0.1" +__version__ = "0.1.0"