Skip to content

Commit

Permalink
🔖 chore(release): prepare for v0.0.1-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
welpo committed Nov 22, 2024
1 parent eeb3075 commit 4fdfb98
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,25 @@ 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.0 - 2024-11-21
## 0.0.1-rc.1 - 2024-11-22

### ✨ Features

- Initial release ([0153329](https://github.com/welpo/shuku/commit/01533294eb6bae548112c8a16b5b025c2ae134ea)) by [@welpo](https://github.com/welpo)

### 🐛 Bug fixes

- *(config)* Dump default config in UTF-8 ([8f6647b](https://github.com/welpo/shuku/commit/8f6647bdc205dc11fb3145b8b67528b873631eb5))
- *(config)* Dump default config in UTF-8 ([8f6647b](https://github.com/welpo/shuku/commit/8f6647bdc205dc11fb3145b8b67528b873631eb5)) by [@welpo](https://github.com/welpo)

### 📝 Documentation

- *(CONTRIBUTING)* Include dev in poetry install command ([00987ce](https://github.com/welpo/shuku/commit/00987ce9d9fe927e6de8fb38af3fba0de00c485b))
- *(CONTRIBUTING)* Include dev in poetry install command ([00987ce](https://github.com/welpo/shuku/commit/00987ce9d9fe927e6de8fb38af3fba0de00c485b)) by [@welpo](https://github.com/welpo)
- *(README)* Improve installation instructions ([14e6bc1](https://github.com/welpo/shuku/commit/14e6bc15bf8559b5c720fd52bbae29a536a00873)) by [@welpo](https://github.com/welpo)

### 🔧 Miscellaneous tasks

- *(git-cliff)* Ignore pre-releases ([6223d99](https://github.com/welpo/shuku/commit/6223d99b2d869150cfaac878cf358185febf16a5))
- *(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)

### 👥 New contributors

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


class FileProcessingError(Exception):
Expand Down

0 comments on commit 4fdfb98

Please sign in to comment.