Skip to content

Commit

Permalink
🔖 chore(release): prepare for v0.0.4-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
welpo committed Dec 27, 2024
1 parent 2ad3af4 commit 9228963
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ 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
## [0.0.4-rc.1](https://github.com/welpo/shuku/compare/v0.0.3..v0.0.4-rc.1) - 2024-12-27

### ✨ Features

- Handle KeyboardInterrupt gracefully ([2ad3af4](https://github.com/welpo/shuku/commit/2ad3af4a277b417d6a62cf353ed5c0db42418be6)) by [@welpo](https://github.com/welpo)

### 📝 Documentation

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.0" # Managed by 'release' script.
version = "0.0.4-rc.1" # 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.0" # Managed by 'release' script.
VERSION = "0.0.4-rc.1" # Managed by 'release' script.


class FileProcessingError(Exception):
Expand Down

0 comments on commit 9228963

Please sign in to comment.