diff --git a/CHANGELOG.md b/CHANGELOG.md index 885bbc0..0803071 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/pyproject.toml b/pyproject.toml index efb3398..69feb83 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "GPL-3.0-or-later" diff --git a/retag_opus/cli.py b/retag_opus/cli.py index 0dc43c9..edfb9ef 100644 --- a/retag_opus/cli.py +++ b/retag_opus/cli.py @@ -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()