diff --git a/scripts/bintray_upload.sh b/scripts/bintray_upload.sh index 83a30e4e2..912b031e1 100755 --- a/scripts/bintray_upload.sh +++ b/scripts/bintray_upload.sh @@ -16,12 +16,6 @@ if [ -z $VERSION ]; then exit 1 fi -# Make sure we have a bintray API key -if [ -z $BINTRAY_API_KEY ]; then - echo "Please set your bintray API key in the BINTRAY_API_KEY env var." - exit 1 -fi - # Make the checksums pushd ./pkg/dist shasum -a256 * > ./vagrant_${VERSION}_SHA256SUMS @@ -30,14 +24,3 @@ if [ -z $NOSIGN ]; then gpg --default-key 348FFC4C --detach-sig ./vagrant_${VERSION}_SHA256SUMS fi popd - -# Upload -for ARCHIVE in ./dist/*; do - ARCHIVE_NAME=$(basename ${ARCHIVE}) - - echo Uploading: $ARCHIVE_NAME - curl \ - -T ${ARCHIVE} \ - -umitchellh:${BINTRAY_API_KEY} \ - "https://api.bintray.com/content/mitchellh/vagrant/vagrant/${VERSION}/${ARCHIVE_NAME}" -done diff --git a/website/www/config.rb b/website/www/config.rb index a5b2fa61a..b87ad13d6 100644 --- a/website/www/config.rb +++ b/website/www/config.rb @@ -4,7 +4,7 @@ helpers MiddlemanHashiCorpHelpers page "/blog_feed.xml", layout: false # The version of Vagrant - update this to update the downloads page -set :latest_version, '1.7.4' +set :latest_version, '1.8.0' set :css_dir, 'stylesheets' set :js_dir, 'javascripts'