Skip to content

Commit

Permalink
8.3-rc7 (#308 #309 #310)
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanBindez committed Nov 3, 2024
1 parent 1d8f679 commit e1ab123
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
VERSION=8
MINOR=3
PATCH=
EXTRAVERSION="-rc6"
EXTRAVERSION="-rc7"

NOTES="(#308 #309 #310)"
BRANCH="dev"
Expand Down
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 = "8.3-rc6"
version = "8.3-rc7"
authors = [
{ name="Juan Bindez", email="[email protected]" },
]
Expand Down
4 changes: 4 additions & 0 deletions pytubefix/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,10 @@ def main():
oauth = True
cache = True

print("Loading video...")
youtube = YouTube(args.url, use_oauth=oauth, allow_oauth_cache=cache)
_perform_args_on_youtube(youtube, args)

else:
print("Loading video...")
youtube = YouTube(args.url, use_oauth=oauth, allow_oauth_cache=cache)
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__ = "8.3-rc6"
__version__ = "8.3-rc7"

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

0 comments on commit e1ab123

Please sign in to comment.