diff --git a/CHANGELOG b/CHANGELOG index 78d6b91d..385e8a18 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 -## [Unreleased] + + +## [3.4.0](https://github.com/unioslo/zabbix-cli/releases/tag/3.4.0) - 2024-11-28 ### Added @@ -35,6 +37,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - V2-style `-C` command invocation shim. Now correctly passes arguments to the new CLI. +- Internal Typer import error after `typer==0.13.0`. ## [3.3.0](https://github.com/unioslo/zabbix-cli/releases/tag/3.3.0) - 2024-11-06 diff --git a/uv.lock b/uv.lock index 70dbaff5..521fe934 100644 --- a/uv.lock +++ b/uv.lock @@ -1533,7 +1533,7 @@ wheels = [ [[package]] name = "zabbix-cli-uio" -version = "3.3.0" +version = "3.4.0" source = { editable = "." } dependencies = [ { name = "httpx", extra = ["socks"] }, diff --git a/zabbix_cli/__about__.py b/zabbix_cli/__about__.py index 5c8681ab..6d5aa11f 100644 --- a/zabbix_cli/__about__.py +++ b/zabbix_cli/__about__.py @@ -1,5 +1,5 @@ from __future__ import annotations -__version__ = "3.3.0" +__version__ = "3.4.0" APP_NAME = "zabbix-cli" AUTHOR = "unioslo"