Skip to content

Commit

Permalink
Pytubefix 6.13.1 (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanBindez committed Aug 27, 2024
1 parent bec4a6a commit 0ec0a32
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/bin/bash

git add .
git commit -m 'Pytubefix 6.13.0 (#190)'
git commit -m 'Pytubefix 6.13.1 (#202)'
git push -u origin main
git tag v6.13.0
git tag v6.13.1
git push --tag
make clean
make upload
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 = "setuptools.build_meta"

[project]
name = "pytubefix"
version = "6.13.0"
version = "6.13.1"
authors = [
{ name="Juan Bindez", email="[email protected]" },
]
Expand Down
2 changes: 1 addition & 1 deletion pytubefix/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def __init__(
(Optional) Path to the file where the OAuth tokens will be stored.
Defaults to None, which means the tokens will be stored in the pytubefix/__cache__ directory.
:param Callable oauth_verifier:
(optional) Verifier to be used for getting outh tokens.
(optional) Verifier to be used for getting oauth tokens.
Verification URL and User-Code will be passed to it respectively.
(if passed, else default verifier will be used)
"""
Expand Down
2 changes: 1 addition & 1 deletion pytubefix/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "6.13.0"
__version__ = "6.13.1"

if __name__ == "__main__":
print(__version__)

0 comments on commit 0ec0a32

Please sign in to comment.