Skip to content

Commit

Permalink
🔖 chore(release): prepare for v0.0.1-rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
welpo committed Nov 22, 2024
1 parent 83942f0 commit d1d001c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
17 changes: 16 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.1-rc.1 - 2024-11-22
## 0.0.1-rc.2 - 2024-11-22

### ✨ Features

Expand All @@ -17,12 +17,27 @@ We use [Semantic Versioning](https://semver.org/), formatted as MAJOR.MINOR.PATC
### 📝 Documentation

- *(CONTRIBUTING)* Include dev in poetry install command ([00987ce](https://github.com/welpo/shuku/commit/00987ce9d9fe927e6de8fb38af3fba0de00c485b)) by [@welpo](https://github.com/welpo)
- *(README)* Add Python version(s) badge ([d19b53e](https://github.com/welpo/shuku/commit/d19b53e66097d9b50d84d69b493b2229ad8fcadd)) by [@welpo](https://github.com/welpo)
- *(README)* Add badges for CI & CD ([ca3f76c](https://github.com/welpo/shuku/commit/ca3f76c85d68e59b70a576b1f71b6cc7a2136aea)) by [@welpo](https://github.com/welpo)
- *(README)* Compare similar projects with badges ([7558e91](https://github.com/welpo/shuku/commit/7558e9135da4e5814f8d0a17b020b33f4218dd64)) by [@welpo](https://github.com/welpo)
- *(README)* Improve installation instructions ([14e6bc1](https://github.com/welpo/shuku/commit/14e6bc15bf8559b5c720fd52bbae29a536a00873)) by [@welpo](https://github.com/welpo)
- *(release)* Recommend `pipx` and link attestations ([b333c4b](https://github.com/welpo/shuku/commit/b333c4bd741e30329c91be4e66d71d04d6f8b628)) by [@welpo](https://github.com/welpo)

### ♻️ Refactor

- *(config)* Use `choices` for `if_file_exists` ([95368e7](https://github.com/welpo/shuku/commit/95368e720c1c868a85e0c16ed03eacea5ea192e1)) by [@welpo](https://github.com/welpo)

### ✅ Testing

- Ignore version metadata when comparing LRC files ([0306775](https://github.com/welpo/shuku/commit/03067752b2bd6a26a6c52087a2b796f9fd5bd452)) by [@welpo](https://github.com/welpo)

### 🔧 Miscellaneous tasks

- *(CD)* Pypi trusted publishing & publish all wheels ([83942f0](https://github.com/welpo/shuku/commit/83942f0ae9f382920a3e012c453dd71f335148ca)) by [@welpo](https://github.com/welpo)
- *(CD)* Create attestation for packaged executables ([cf4caf2](https://github.com/welpo/shuku/commit/cf4caf22253052a3b44a862cb045516ef466a42e)) by [@welpo](https://github.com/welpo)
- *(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)
- Rename ci.yaml to ci.yml ([5fa1179](https://github.com/welpo/shuku/commit/5fa117940c55c572fd60aa6ee59d27ff0dfd7960)) 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-rc.1" # Managed by 'release' script.
version = "0.0.1-rc.2" # 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.1-rc.1" # Managed by 'release' script.
VERSION = "0.0.1-rc.2" # Managed by 'release' script.


class FileProcessingError(Exception):
Expand Down

0 comments on commit d1d001c

Please sign in to comment.