From a78a7ba9175c93a49171d06be1c8917c787d98b0 Mon Sep 17 00:00:00 2001 From: welpo Date: Tue, 26 Nov 2024 20:50:53 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20chore(release):=20prepare=20for?= =?UTF-8?q?=20v0.0.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 8 +++----- pyproject.toml | 2 +- shuku/cli.py | 2 +- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 763993f..18f4c1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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.3-rc.0](https://github.com/welpo/shuku/compare/v0.0.2..v0.0.3-rc.0) - 2024-11-26 +## [0.0.3](https://github.com/welpo/shuku/compare/v0.0.2..v0.0.3) - 2024-11-26 ### ✨ Features @@ -12,12 +12,12 @@ We use [Semantic Versioning](https://semver.org/), formatted as MAJOR.MINOR.PATC ### 📝 Documentation -- Remove installation warning from release notice ([07bac0e](https://github.com/welpo/shuku/commit/07bac0e030f1fa659895ef7baad9ccf16b5423ba)) +- Remove installation warning from release notice ([07bac0e](https://github.com/welpo/shuku/commit/07bac0e030f1fa659895ef7baad9ccf16b5423ba)) by [@welpo](https://github.com/welpo) - Join repository metrics w/ main comparison table ([4648a9d](https://github.com/welpo/shuku/commit/4648a9daba15ad9420b14014e873a6661f130c48)) by [@welpo](https://github.com/welpo) ### ♻️ Refactor -- Reduce subtitle search verbosity ([8da5423](https://github.com/welpo/shuku/commit/8da5423967d256e3aab9f0992a5d484cf30e0a03)) +- Reduce subtitle search verbosity ([8da5423](https://github.com/welpo/shuku/commit/8da5423967d256e3aab9f0992a5d484cf30e0a03)) by [@welpo](https://github.com/welpo) ### 🔧 Miscellaneous tasks @@ -28,8 +28,6 @@ We use [Semantic Versioning](https://semver.org/), formatted as MAJOR.MINOR.PATC 🫶 [@renovate](https://github.com/renovate)[bot] made their first contribution in [#6](https://github.com/welpo/shuku/pull/6) -🫶 [@welpo](https://github.com/welpo) made their first contribution - ## 0.0.2 - 2024-11-22 ### ✨ Features diff --git a/pyproject.toml b/pyproject.toml index ac7196d..b214b43 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "shuku" -version = "0.0.3-rc.0" # Managed by 'release' script. +version = "0.0.3" # 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 38e3ea0..b0cf6c6 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.3-rc.0" # Managed by 'release' script. + VERSION = "0.0.3" # Managed by 'release' script. class FileProcessingError(Exception):