From d1d001c328c75211c15a4eda12936851dddc3915 Mon Sep 17 00:00:00 2001 From: welpo Date: Fri, 22 Nov 2024 14:24:26 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20chore(release):=20prepare=20for?= =?UTF-8?q?=20v0.0.1-rc.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 17 ++++++++++++++++- pyproject.toml | 2 +- shuku/cli.py | 2 +- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6d0c7b..6e914c6 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.1 - 2024-11-22 +## 0.0.1-rc.2 - 2024-11-22 ### ✨ Features @@ -17,12 +17,27 @@ We use [Semantic Versioning](https://semver.org/), formatted as MAJOR.MINOR.PATC ### 📝 Documentation - *(CONTRIBUTING)* Include dev in poetry install command ([00987ce](https://github.com/welpo/shuku/commit/00987ce9d9fe927e6de8fb38af3fba0de00c485b)) by [@welpo](https://github.com/welpo) +- *(README)* Add Python version(s) badge ([d19b53e](https://github.com/welpo/shuku/commit/d19b53e66097d9b50d84d69b493b2229ad8fcadd)) by [@welpo](https://github.com/welpo) +- *(README)* Add badges for CI & CD ([ca3f76c](https://github.com/welpo/shuku/commit/ca3f76c85d68e59b70a576b1f71b6cc7a2136aea)) by [@welpo](https://github.com/welpo) +- *(README)* Compare similar projects with badges ([7558e91](https://github.com/welpo/shuku/commit/7558e9135da4e5814f8d0a17b020b33f4218dd64)) by [@welpo](https://github.com/welpo) - *(README)* Improve installation instructions ([14e6bc1](https://github.com/welpo/shuku/commit/14e6bc15bf8559b5c720fd52bbae29a536a00873)) by [@welpo](https://github.com/welpo) +- *(release)* Recommend `pipx` and link attestations ([b333c4b](https://github.com/welpo/shuku/commit/b333c4bd741e30329c91be4e66d71d04d6f8b628)) by [@welpo](https://github.com/welpo) + +### ♻️ Refactor + +- *(config)* Use `choices` for `if_file_exists` ([95368e7](https://github.com/welpo/shuku/commit/95368e720c1c868a85e0c16ed03eacea5ea192e1)) by [@welpo](https://github.com/welpo) + +### ✅ Testing + +- Ignore version metadata when comparing LRC files ([0306775](https://github.com/welpo/shuku/commit/03067752b2bd6a26a6c52087a2b796f9fd5bd452)) by [@welpo](https://github.com/welpo) ### 🔧 Miscellaneous tasks +- *(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) - *(release)* Automate version upgrades ([eeb3075](https://github.com/welpo/shuku/commit/eeb3075452015c43594d016560a6e0782560716c)) by [@welpo](https://github.com/welpo) +- Rename ci.yaml to ci.yml ([5fa1179](https://github.com/welpo/shuku/commit/5fa117940c55c572fd60aa6ee59d27ff0dfd7960)) by [@welpo](https://github.com/welpo) ### 👥 New contributors diff --git a/pyproject.toml b/pyproject.toml index 23a7c53..e667854 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "shuku" -version = "0.0.1-rc.1" # Managed by 'release' script. +version = "0.0.1-rc.2" # 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 9448548..81f1bab 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.1" # Managed by 'release' script. + VERSION = "0.0.1-rc.2" # Managed by 'release' script. class FileProcessingError(Exception):