Skip to content

Commit

Permalink
Merge pull request #141 from blackjack4494/master
Browse files Browse the repository at this point in the history
Release v3 2020.09.23
  • Loading branch information
blackjack4494 authored Sep 23, 2020
2 parents 7ace2ef + 93721ed commit e265ab4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion scripts/update-version-workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@
if len(_OLD_VERSION) > 1:
old_rev = _OLD_VERSION[1]

ver = f'{datetime.today():%Y.%m.%d}'
now = datetime.now()
# ver = f'{datetime.today():%Y.%m.%d}'
ver = now.strftime("%Y.%m.%d")
rev = ''

if old_ver == ver:
Expand Down
2 changes: 1 addition & 1 deletion youtube_dlc/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from __future__ import unicode_literals

__version__ = '2020.09.16'
__version__ = '2020.09.23-1'

0 comments on commit e265ab4

Please sign in to comment.