From 37c692eabfc3b4c7be018dc031c063d0a4b51ae1 Mon Sep 17 00:00:00 2001 From: welpo Date: Fri, 27 Dec 2024 01:44:46 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20chore(release):=20prepare=20for?= =?UTF-8?q?=20v0.0.4-rc.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 12 ++++++++++++ pyproject.toml | 2 +- shuku/cli.py | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18f4c1f..21a0bca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ 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 + +### 📝 Documentation + +- Add isitmaintained.com badges to comparison ([15e9b44](https://github.com/welpo/shuku/commit/15e9b445dace318d11084a8e797eda615df4dab8)) by [@welpo](https://github.com/welpo) + +### 🔧 Miscellaneous tasks + +- *(CD)* Use PyInstaller instead of Nuitka ([cf7fcbf](https://github.com/welpo/shuku/commit/cf7fcbf141765148cd1b93230333c24e36d1987b)) by [@welpo](https://github.com/welpo) +- *(CD)* Set timeouts for release jobs ([3812d1e](https://github.com/welpo/shuku/commit/3812d1e066604438828c5922efa032601d4a5746)) by [@welpo](https://github.com/welpo) +- *(README)* Link development blog post ([cd2f346](https://github.com/welpo/shuku/commit/cd2f3467459f54a94265f960e7760983fddf770b)) by [@welpo](https://github.com/welpo) + ## [0.0.3](https://github.com/welpo/shuku/compare/v0.0.2..v0.0.3) - 2024-11-26 ### ✨ Features diff --git a/pyproject.toml b/pyproject.toml index fecf1e6..c3b3a9a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "shuku" -version = "0.0.3" # Managed by 'release' script. +version = "0.0.4-rc.0" # 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 b0cf6c6..0837783 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" # Managed by 'release' script. + VERSION = "0.0.4-rc.0" # Managed by 'release' script. class FileProcessingError(Exception):