diff --git a/CHANGELOG.md b/CHANGELOG.md index 4066aab..c1d31ce 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.4-rc.1](https://github.com/welpo/shuku/compare/v0.0.3..v0.0.4-rc.1) - 2024-12-27 +## [0.0.4](https://github.com/welpo/shuku/compare/v0.0.3..v0.0.4) - 2024-12-27 ### ✨ Features @@ -14,12 +14,22 @@ We use [Semantic Versioning](https://semver.org/), formatted as MAJOR.MINOR.PATC - Add isitmaintained.com badges to comparison ([15e9b44](https://github.com/welpo/shuku/commit/15e9b445dace318d11084a8e797eda615df4dab8)) by [@welpo](https://github.com/welpo) +### ♻️ Refactor + +- *(help)* Ensure program name is "shuku" ([6fa632b](https://github.com/welpo/shuku/commit/6fa632bf860021ae905fc88df8bc1d09a6dcffe5)) + ### 🔧 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) +### 👥 New contributors + +🫶 [@welpo](https://github.com/welpo) made their first contribution + +🫶 [@renovate](https://github.com/renovate)[bot] made their first contribution in [#17](https://github.com/welpo/shuku/pull/17) + ## [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 36e0091..251757b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "shuku" -version = "0.0.4-rc.1" # Managed by 'release' script. +version = "0.0.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 a1bb8cc..a50c2fb 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.1" # Managed by 'release' script. + VERSION = "0.0.4" # Managed by 'release' script. class FileProcessingError(Exception):