From 7b523f11c47ecf9757dab900b8ab13a5e20751c1 Mon Sep 17 00:00:00 2001 From: welpo Date: Fri, 22 Nov 2024 15:43:40 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20chore(release):=20prepare=20for?= =?UTF-8?q?=20v0.0.1-rc.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 7 ++++--- pyproject.toml | 2 +- shuku/cli.py | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a326a05..2840921 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.1-rc.3 - 2024-11-22 +## 0.0.1-rc.4 - 2024-11-22 ### ✨ Features @@ -33,8 +33,9 @@ We use [Semantic Versioning](https://semver.org/), formatted as MAJOR.MINOR.PATC ### 🔧 Miscellaneous tasks -- *(CD)* Install only main and build ([169f08c](https://github.com/welpo/shuku/commit/169f08c0fbcac3cf27f0e82b54a9936f96d42144)) -- *(CD)* Stop trying to upload binaries to PyPI ([b08a6c5](https://github.com/welpo/shuku/commit/b08a6c52ca22bf55209e2b9e8bd921e87c243542)) +- *(CD)* Build wheels once ([2ed4d03](https://github.com/welpo/shuku/commit/2ed4d03d269548fd0be64f1b9fab015e9bbb9d1e)) +- *(CD)* Install only main and build ([169f08c](https://github.com/welpo/shuku/commit/169f08c0fbcac3cf27f0e82b54a9936f96d42144)) by [@welpo](https://github.com/welpo) +- *(CD)* Stop trying to upload binaries to PyPI ([b08a6c5](https://github.com/welpo/shuku/commit/b08a6c52ca22bf55209e2b9e8bd921e87c243542)) by [@welpo](https://github.com/welpo) - *(CD)* Pypi trusted publishing & publish all wheels ([83942f0](https://github.com/welpo/shuku/commit/83942f0ae9f382920a3e012c453dd71f335148ca)) by [@welpo](https://github.com/welpo) - *(CD)* Create attestation for packaged executables ([cf4caf2](https://github.com/welpo/shuku/commit/cf4caf22253052a3b44a862cb045516ef466a42e)) by [@welpo](https://github.com/welpo) - *(git-cliff)* Ignore pre-releases ([6223d99](https://github.com/welpo/shuku/commit/6223d99b2d869150cfaac878cf358185febf16a5)) by [@welpo](https://github.com/welpo) diff --git a/pyproject.toml b/pyproject.toml index 5e543f2..dba63ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "shuku" -version = "0.0.1-rc.3" # Managed by 'release' script. +version = "0.0.1-rc.4" # 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 83fd6db..c142f86 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.1-rc.3" # Managed by 'release' script. + VERSION = "0.0.1-rc.4" # Managed by 'release' script. class FileProcessingError(Exception):