Skip to content

Commit

Permalink
🔖 chore(release): prepare for v0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
welpo committed Dec 27, 2024
1 parent 6fa632b commit 86ab2f6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "GPL-3.0-or-later"
Expand Down
2 changes: 1 addition & 1 deletion shuku/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 86ab2f6

Please sign in to comment.