Skip to content

Commit

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

### ✨ Features

- Improve skipped chapter logging ([0ff6af6](https://github.com/welpo/shuku/commit/0ff6af66b7a44243b25e77293b0f4283ed1b3130)) by [@welpo](https://github.com/welpo)

### 📝 Documentation

- Remove installation warning from release notice ([07bac0e](https://github.com/welpo/shuku/commit/07bac0e030f1fa659895ef7baad9ccf16b5423ba))
- Remove installation warning from release notice ([07bac0e](https://github.com/welpo/shuku/commit/07bac0e030f1fa659895ef7baad9ccf16b5423ba)) by [@welpo](https://github.com/welpo)
- Join repository metrics w/ main comparison table ([4648a9d](https://github.com/welpo/shuku/commit/4648a9daba15ad9420b14014e873a6661f130c48)) by [@welpo](https://github.com/welpo)

### ♻️ Refactor

- Reduce subtitle search verbosity ([8da5423](https://github.com/welpo/shuku/commit/8da5423967d256e3aab9f0992a5d484cf30e0a03))
- Reduce subtitle search verbosity ([8da5423](https://github.com/welpo/shuku/commit/8da5423967d256e3aab9f0992a5d484cf30e0a03)) by [@welpo](https://github.com/welpo)

### 🔧 Miscellaneous tasks

Expand All @@ -28,8 +28,6 @@ We use [Semantic Versioning](https://semver.org/), formatted as MAJOR.MINOR.PATC

🫶 [@renovate](https://github.com/renovate)[bot] made their first contribution in [#6](https://github.com/welpo/shuku/pull/6)

🫶 [@welpo](https://github.com/welpo) made their first contribution

## 0.0.2 - 2024-11-22

### ✨ 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.3-rc.0" # Managed by 'release' script.
version = "0.0.3" # 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 <osc@osc.garden>"]
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.3-rc.0" # Managed by 'release' script.
VERSION = "0.0.3" # Managed by 'release' script.


class FileProcessingError(Exception):
Expand Down

0 comments on commit a78a7ba

Please sign in to comment.