Skip to content

Commit

Permalink
aha
Browse files Browse the repository at this point in the history
  • Loading branch information
coletdjnz committed Sep 10, 2024
1 parent cd10bb4 commit 66a55fc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
echo "::group::Variables"
cat << EOF | tee -a "$GITHUB_OUTPUT"
tag=${tag}
version_raw=$(hatch project metadata | jq -r .version)
version=v$(hatch project metadata | jq -r .version)
EOF
echo "::endgroup::"
Expand All @@ -33,7 +34,7 @@ jobs:
uses: mindsers/changelog-reader-action@v2
with:
validation_level: none
version: ${{ steps.set_variables.outputs.version }}
version: ${{ steps.set_variables.outputs.version_raw }}
path: ./CHANGELOG.md
- name: Bundle and create release
env:
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Changelog

## [0.0.4]
## [0.0.4b1]

### Added

- `VERSION` attribute to GetPOTProvider. Shown in verbose output for debugging purposes.

[unreleased]:https://github.com/coletdjnz/yt-dlp-get-pot/compare/v0.0.3...HEAD
[0.0.4]:https://github.com/coletdjnz/yt-dlp-get-pot/compare/v0.0.3...v0.0.4
[0.0.4b1]:https://github.com/coletdjnz/yt-dlp-get-pot/compare/v0.0.3...v0.0.4b1
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "yt-dlp-get-pot"
version = "0.0.4"
version = "0.0.4b1"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE"}
Expand Down
2 changes: 1 addition & 1 deletion yt_dlp_plugins/extractor/getpot.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from yt_dlp.YoutubeDL import YoutubeDL


__version__ = '0.0.4'
__version__ = '0.0.4b1'
__all__ = ['GetPOTProvider', 'register_provider', 'register_preference', '__version__']


Expand Down

0 comments on commit 66a55fc

Please sign in to comment.