diff options
-rwxr-xr-x | devscripts/release.sh | 1 | ||||
-rw-r--r-- | youtube_dl/version.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/devscripts/release.sh b/devscripts/release.sh index f43f4ba70..46c31e437 100755 --- a/devscripts/release.sh +++ b/devscripts/release.sh @@ -71,6 +71,7 @@ git checkout HEAD -- youtube-dl youtube-dl.exe for f in $RELEASE_FILES; do gpg --detach-sig "build/$version/$f"; done scp -r "build/$version" ytdl@yt-dl.org:html/tmp/ ssh ytdl@yt-dl.org "mv html/tmp/$version html/downloads/" +ssh ytdl@yt-dl.org "sh html/update_latest.sh $version" /bin/echo -e "\n### Now switching to gh-pages..." git clone --branch gh-pages --single-branch . build/gh-pages diff --git a/youtube_dl/version.py b/youtube_dl/version.py index 50667e0c5..15003cccd 100644 --- a/youtube_dl/version.py +++ b/youtube_dl/version.py @@ -1,2 +1,2 @@ -__version__ = '2013.06.31' +__version__ = '2013.06.32' |