diff --git a/obsws_cli/__about__.py b/obsws_cli/__about__.py index c6fc672..0ac739b 100644 --- a/obsws_cli/__about__.py +++ b/obsws_cli/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2025-present onyx-and-iris # # SPDX-License-Identifier: MIT -__version__ = "0.15.0" +__version__ = "0.15.1" diff --git a/obsws_cli/app.py b/obsws_cli/app.py index a7e4ea0..2c88297 100644 --- a/obsws_cli/app.py +++ b/obsws_cli/app.py @@ -53,7 +53,7 @@ err_console = Console(stderr=True) def version_callback(value: bool): """Show the version of the CLI.""" if value: - typer.echo(f'obsws_cli version: {obsws_cli_version}') + out_console.print(f'obsws_cli version: {obsws_cli_version}') raise typer.Exit()