From 34fbc77182d2c84cb3acdefdad1e0032e3b94ef5 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Wed, 14 May 2025 20:36:43 +0100 Subject: [PATCH] fixes AttributeError release bump --- obsws_cli/__about__.py | 2 +- obsws_cli/record.py | 4 ++-- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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", ]