Skip to content

Commit

Permalink
Step up Retag Opus to v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gevhaz committed May 29, 2022
1 parent 10e8824 commit d960dde
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

## [0.3.0] - 2022-05-30

### Modified

- Restructure project to use Poetry.
- Deploy this and future versions to PyPI through Github Actions.

## [0.2.0] - 2022-05-22

### Added
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ignore_missing_imports = true

[tool.poetry]
name = "retag_opus"
version = "0.2.0"
version = "0.3.0"
description = "An app to tag music files downloaded from Youtube with all the information available in the Youtube description."
authors = ["Simon Bengtsson <[email protected]>"]
license = "GPL-3.0-or-later"
Expand Down
2 changes: 1 addition & 1 deletion retag_opus/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def parse_arguments() -> Namespace:
).complete = shtab.DIRECTORY # type: ignore

parser.add_argument(
"-V", "--version", action="version", version="%(prog)s (version {version})".format(version="0.2.0")
"-V", "--version", action="version", version="%(prog)s (version {version})".format(version="0.3.0")
)

return parser.parse_args()

0 comments on commit d960dde

Please sign in to comment.