Skip to content

Commit

Permalink
Release v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iver56 committed Jan 9, 2024
1 parent bb2bc07 commit 072f040
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion fast_align_audio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .alignment import find_best_alignment_offset, align_delayed_signal_with_reference

__version__ = "0.2.1"
__version__ = "0.3.0"
2 changes: 1 addition & 1 deletion packaging.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/*`
Expand Down

0 comments on commit 072f040

Please sign in to comment.