diff --git a/CHANGELOG.md b/CHANGELOG.md index e07db58..7325ea8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.4] - 2024-08-13 + ### Added - Support to load custom TFLite models using `CustomModelV2M4TFLite` @@ -53,7 +55,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release -[Unreleased]: https://github.com/birdnet-team/birdnet/compare/v0.1.3...HEAD +[Unreleased]: https://github.com/birdnet-team/birdnet/compare/v0.1.4...HEAD +[0.1.4]: https://github.com/birdnet-team/birdnet/compare/v0.1.3...v0.1.4 [0.1.3]: https://github.com/birdnet-team/birdnet/compare/v0.1.2...v0.1.3 [0.1.2]: https://github.com/birdnet-team/birdnet/compare/v0.1.1...v0.1.2 [0.1.1]: https://github.com/birdnet-team/birdnet/compare/v0.1.0...v0.1.1 diff --git a/pyproject.toml b/pyproject.toml index 930be43..302f8b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "birdnet" -version = "0.1.3" +version = "0.1.4" description = "A Python library for identifying bird species by their sounds." readme = "README.md" requires-python = ">=3.9, <3.12" diff --git a/src/birdnet_tests/models/model_v2m4_tflite_custom_py/test_custom_model_v2m4_tflite.py b/src/birdnet_tests/models/model_v2m4_tflite_custom_py/test_custom_model_v2m4_tflite.py index 4d2db34..9f6a3b1 100644 --- a/src/birdnet_tests/models/model_v2m4_tflite_custom_py/test_custom_model_v2m4_tflite.py +++ b/src/birdnet_tests/models/model_v2m4_tflite_custom_py/test_custom_model_v2m4_tflite.py @@ -8,7 +8,6 @@ # Duration: 120s TEST_FILE_WAV = TEST_FILES_DIR / "soundscape.wav" -TEST_PATH = Path(f"{TEST_FILE_WAV}.global.pkl") def test_invalid_classifier_name_raises_value_error():