diff --git a/CHANGELOG.md b/CHANGELOG.md index d8c27fd..f1787ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ 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). +## [0.3.0] - 2024-01-09 + +### Changed + +* **Breaking change**: `align_delayed_signal_with_reference` now returns a list of gaps in addition to the aligned signal. So it now returns a `Tuple[NDArray[np.float32], List[Tuple[int, int]]]` instead of a `NDArray[np.float32]`. +* Add support for python 3.10 and 3.11 + +### Fixed + +* Fix a bug where `align_delayed_signal_with_reference` didn't work when the input was 2D and the offset was positive + ## [0.2.1] - 2023-09-13 ### Changed diff --git a/fast_align_audio/__init__.py b/fast_align_audio/__init__.py index a40bb28..df1336e 100644 --- a/fast_align_audio/__init__.py +++ b/fast_align_audio/__init__.py @@ -1,3 +1,3 @@ from .alignment import find_best_alignment_offset, align_delayed_signal_with_reference -__version__ = "0.2.1" +__version__ = "0.3.0" diff --git a/packaging.md b/packaging.md index b12e2dc..af45b45 100644 --- a/packaging.md +++ b/packaging.md @@ -2,7 +2,7 @@ * `python setup.py develop && pytest` * Update CHANGELOG.md * Commit and push the change with a commit message like this: "Release vx.y.z" (replace x.y.z with the package version) -* Wait for build workflow in Github Actions to complete +* Wait for build workflow in GitHub Actions to complete * Download wheels artifact from the build workflow * Place all the fresh whl files in dist/ * `python -m twine upload dist/*`