From a83fde20892a354f93a890c9c65f0327b721839f Mon Sep 17 00:00:00 2001 From: dscripka Date: Sun, 11 Feb 2024 15:34:56 -0500 Subject: [PATCH] fix version [skip ci] --- CHANGELOG.md | 12 ++++++++++++ pyproject.toml | 2 +- setup.py | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0484d60..a69c7ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Change Log +## v0.6.0 - 2023/06/15 + +### Added + +* Various bug fixes, and some new functionality in `model.py` to control repeated detections + +### Changed + +* Models are no longer included in the PyPi package, and must be downloaded separately + +### Removed + ## v0.5.0 - 2023/06/15 ### Added diff --git a/pyproject.toml b/pyproject.toml index 3cadc0e..d420f04 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ testpaths = [ [project] name = "openwakeword" -version = "0.6.1" +version = "0.6.0" authors = [ { name="David Scripka", email="david.scripka@gmail.com" }, ] diff --git a/setup.py b/setup.py index dbb3b38..df0a666 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def build_additional_requires(): setuptools.setup( name="openwakeword", - version="0.6.1", + version="0.6.0", install_requires=[ 'onnxruntime>=1.10.0,<2', 'tflite-runtime>=2.8.0,<3; platform_system == "Linux"',