From 922896327a1db4367494dc325537cf03ecc130c9 Mon Sep 17 00:00:00 2001 From: welpo Date: Fri, 27 Dec 2024 11:59:44 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20chore(release):=20prepare=20for?= =?UTF-8?q?=20v0.0.4-rc.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 +++++- pyproject.toml | 2 +- shuku/cli.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21a0bca..4066aab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,11 @@ Welcome to the changelog for shuku. Here you will find a comprehensive list of a We use [Semantic Versioning](https://semver.org/), formatted as MAJOR.MINOR.PATCH. Major version changes involve significant (breaking) changes, minor versions introduce features and improvements in a backward compatible manner, and patch versions are for bug fixes and minor tweaks. -## [0.0.4-rc.0](https://github.com/welpo/shuku/compare/v0.0.3..v0.0.4-rc.0) - 2024-12-27 +## [0.0.4-rc.1](https://github.com/welpo/shuku/compare/v0.0.3..v0.0.4-rc.1) - 2024-12-27 + +### ✨ Features + +- Handle KeyboardInterrupt gracefully ([2ad3af4](https://github.com/welpo/shuku/commit/2ad3af4a277b417d6a62cf353ed5c0db42418be6)) by [@welpo](https://github.com/welpo) ### 📝 Documentation diff --git a/pyproject.toml b/pyproject.toml index c3b3a9a..36e0091 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "shuku" -version = "0.0.4-rc.0" # Managed by 'release' script. +version = "0.0.4-rc.1" # Managed by 'release' script. description = "A command-line tool for condensing video and audio files based on subtitle timestamps, optimizing media content for language learning and study." authors = ["Óscar Fernández "] license = "GPL-3.0-or-later" diff --git a/shuku/cli.py b/shuku/cli.py index c0e1c64..e7c40f2 100644 --- a/shuku/cli.py +++ b/shuku/cli.py @@ -79,7 +79,7 @@ VERSION = version(PROGRAM_NAME) except ImportError: # pragma: no cover - VERSION = "0.0.4-rc.0" # Managed by 'release' script. + VERSION = "0.0.4-rc.1" # Managed by 'release' script. class FileProcessingError(Exception):