Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Start release process creating NOTICE #765

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,16 @@ set -eu

RELEASE_VERSION=$1
NEXT_RELEASE="$2.dev0"
__NOTICE_OUTPUT_FILE="NOTICE.txt"


echo "============================="
echo "Preparing Rally release $RELEASE_VERSION"
echo "============================="

echo "Preparing ${__NOTICE_OUTPUT_FILE}"
source create-notice.sh

echo "Updating author information"
git log --format='%aN' | sort -u > AUTHORS
# This will produce a non-zero exit code iff there are changes.
Expand Down Expand Up @@ -67,10 +72,6 @@ then
exit 2
fi

__NOTICE_OUTPUT_FILE="NOTICE.txt"
echo "Preparing ${__NOTICE_OUTPUT_FILE}"
source create-notice.sh

# Build new version
python3 setup.py bdist_wheel
# Upload to PyPI
Expand Down