diff --git a/obsws_cli/__about__.py b/obsws_cli/__about__.py index 364a7b7..4329030 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.10.3a0" +__version__ = "0.10.3" diff --git a/obsws_cli/record.py b/obsws_cli/record.py index 38a9ece..813b993 100644 --- a/obsws_cli/record.py +++ b/obsws_cli/record.py @@ -51,9 +51,9 @@ def toggle(ctx: typer.Context): """Toggle recording.""" resp = ctx.obj.toggle_record() if resp.output_active: - type.echo('Recording started successfully.') + typer.echo('Recording started successfully.') else: - type.echo('Recording stopped successfully.') + typer.echo('Recording stopped successfully.') @app.command('status | ss') diff --git a/pyproject.toml b/pyproject.toml index c4be26b..7c34312 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ classifiers = [ ] dependencies = [ "typer>=0.15.2", - "obsws-python>=1.7.1", + "obsws-python>=1.7.2", "pydantic-settings>=2.9.1", ]