From 7868c25c8011cc59797c194933f5275362f64555 Mon Sep 17 00:00:00 2001 From: coletdjnz Date: Sun, 29 Sep 2024 13:36:38 +1300 Subject: [PATCH] release: 0.2.0 --- CHANGELOG.md | 9 ++++++++- pyproject.toml | 2 +- yt_dlp_plugins/extractor/getpot.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b37941..239ef76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [0.2.0] + +### Changed + +- Productionize after upstream PO Token support merged. Minimum yt-dlp version is `2024.09.27` + ## [0.1.1] ### Fixed @@ -20,6 +26,7 @@ - Improve logging output - Re-raise `NoSupportingHandlers` error raised within a Provider as a `RequestError` -[unreleased]: https://github.com/coletdjnz/yt-dlp-get-pot/compare/v0.1.1...HEAD +[unreleased]: https://github.com/coletdjnz/yt-dlp-get-pot/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/coletdjnz/yt-dlp-get-pot/compare/v0.1.1...v0.2.0 [0.1.1]: https://github.com/coletdjnz/yt-dlp-get-pot/compare/v0.1.0...v0.1.1 [0.1.0]: https://github.com/coletdjnz/yt-dlp-get-pot/compare/v0.0.3...v0.1.0 \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 0c681d5..fff577f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "yt-dlp-get-pot" -version = "0.1.1" +version = "0.2.0" readme = "README.md" requires-python = ">=3.8" license = { file = "LICENSE"} diff --git a/yt_dlp_plugins/extractor/getpot.py b/yt_dlp_plugins/extractor/getpot.py index dee7a6e..57e3bb0 100644 --- a/yt_dlp_plugins/extractor/getpot.py +++ b/yt_dlp_plugins/extractor/getpot.py @@ -12,7 +12,7 @@ from yt_dlp.YoutubeDL import YoutubeDL -__version__ = '0.1.1' +__version__ = '0.2.0' __all__ = ['GetPOTProvider', 'register_provider', 'register_preference', '__version__']