use iso 8601 date format for the changelog

This commit is contained in:
beardypig 2017-01-06 19:41:10 +00:00
parent e92bc9812e
commit 8bce29f293
2 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
streamlink 0.2.0 (12-16-2016)
streamlink 0.2.0 (2016-12-16)
-----------------------------
Release 0.2.0 of Streamlink!
@ -87,7 +87,7 @@ Again, thank you everyone whom contributed to this release! :D
thatlinuxfur <toss1@zootboy.com> (1):
Added tigerdile.com support. (#221)
streamlink 0.1.0 (11-21-2016)
streamlink 0.1.0 (2016-11-21)
-----------------------------
A major update to Streamlink.
@ -182,7 +182,7 @@ The main features are:
tam1m <tam1m@users.noreply.github.com> (1):
Fix zdf_mediathek TypeError (#156)
streamlink 0.0.2 (10-12-2016)
streamlink 0.0.2 (2016-10-12)
-----------------------------
The second ever release of Streamlink!
@ -266,7 +266,7 @@ release of Streamlink (0.0.1) to now (0.0.2).
steven7851 <steven7851@msn.com> (1):
Update plugin.douyutv
streamlink 0.0.1 (09-23-2016)
streamlink 0.0.1 (2016-09-23)
-----------------------------
The first release of Streamlink!

View File

@ -99,7 +99,7 @@ changelog_rst() {
echo "Generating CHANGELOG.rst"
CHANGES=$(cat changes.txt)
cd $CLI
DATE=$(date +"%m-%d-%Y")
DATE=$(date +"%Y-%m-%d")
CHANGELOG=$(cat CHANGELOG.rst)
HEADER="$CLI $1 ($DATE)"
HEADER="${HEADER}\n$(for i in $(seq 1 ${#HEADER}); do echo '-'; done)"