From 3dbff1cc4ddf8b0ccc170f9cb17b6b75a656036c Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Mon, 2 Jun 2025 17:32:52 +0100 Subject: [PATCH] add 0.15.0 to CHANGELOG minor bump --- CHANGELOG.md | 10 ++++++++++ obsws_cli/__about__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1291d2..cd817db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +# [0.15.0] - 2025-06-02 + +### Added + +- root typer now accepts --version/-v option, it returns the CLI version. See [Root Typer](https://github.com/onyx-and-iris/obsws-cli?tab=readme-ov-file#root-typer) + +### Changed + +- version command renamed to obs-version + # [0.14.2] - 2025-05-29 ### Changed diff --git a/obsws_cli/__about__.py b/obsws_cli/__about__.py index 94036d5..c6fc672 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.14.2" +__version__ = "0.15.0" diff --git a/pyproject.toml b/pyproject.toml index 14bf2dc..7175fe5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "typer>=0.15.2", + "typer>=0.16.0", "obsws-python>=1.7.2", "pydantic-settings>=2.9.1", ]