Skip to content

Commit

Permalink
chore: new minor version
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoGuadrini committed Jul 25, 2024
1 parent 5fdaa7f commit d69bf3f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Release notes

## 1.10.0
Jul 25, 2024

- Add `url-chars` cli argument
- Add `cache` cli argument, refs #10
- Add **url_chars** function, refs #12
- Fix _mkv_ extension, refs #13
- Fix **orderby-track** return function, refs #14

## 1.9.0
May 09, 2024

Expand Down
2 changes: 1 addition & 1 deletion mkpl.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"f4a",
}
FILE_FORMAT = AUDIO_FORMAT.union(VIDEO_FORMAT)
__version__ = "1.9.0"
__version__ = "1.10.0"


# endregion
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ py-modules = ["mkpl"]

[project]
name = "make_playlist"
version = "1.9.0"
version = "1.10.0"
readme = "README.md"

authors = [{ name = "Matteo Guadrini", email = "[email protected]" }]
Expand All @@ -16,13 +16,13 @@ maintainers = [
]

description = "Make M3U format playlist from command line."
requires-python = ">=3.7"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = ["mutagen"]
dependencies = ["mutagen", "tempcache"]

[project.scripts]
mkpl = "mkpl:main"
Expand Down

0 comments on commit d69bf3f

Please sign in to comment.