diff --git a/CHANGELOG.md b/CHANGELOG.md --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # CHANGELOG +## v0.16.1 (2024-11-25) + +### Bug Fixes + +- Network time out and slice select * + ([`a3c79f3`](https://opencode.it4i.eu/openwebsearcheu-public/owi-cli/-/commit/a3c79f3e7b9e43a74c4e740e821c0dbc4a9b11b5)) + + ## v0.16.0 (2024-11-25) ### Bug Fixes diff --git a/pyproject.toml b/pyproject.toml --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "owilix" -version = "0.16.0" +version = "0.16.1" description = "OWILIX - the Command Line Interface for slicing and consuming the Open Web Index. " authors = ["Michael Granitzer "] license = "MIT" diff --git a/owilix/_version.py b/owilix/_version.py --- a/owilix/_version.py +++ b/owilix/_version.py @@ -1,3 +1,3 @@ # These version placeholders will be replaced later during substitution. -__version__ = "0.16.0" +__version__ = "0.16.1" __version_tuple__ = (0, 15, 0)