Update cut_version.sh.
[pyutils.git] / cut_version.sh
1 #!/usr/bin/env bash
2
3 set -e
4
5 # Ask a yes or no question
6 function ask_y_n() {
7     local prompt default reply
8     if [ "${2:-}" = "Y" ]; then
9         prompt="Y/n"
10         default=Y
11     elif [ "${2:-}" = "N" ]; then
12         prompt="y/N"
13         default=N
14     else
15         prompt="y/n"
16         default=
17     fi
18     while true; do
19         echo -ne "$1 [$prompt] "
20         read -n 1 -t 5 reply </dev/tty
21         if [ -z "$reply" ]; then
22             echo
23             echo "(timeout, assuming $default)"
24             reply=$default
25         fi
26         case "$reply" in
27             [Yy]* ) echo && return 0 ;;
28             [Nn]* ) echo && return 1 ;;
29             * ) echo && echo "Please answer Yes or No." ;;
30         esac
31     done
32 }
33
34 function pause() {
35     read -rsp $'Press any key to continue...' -n1 key
36 }
37
38
39 if [ $# -ne 1 ]; then
40     echo "Usage: $0 <required_version_number>"
41     exit 1
42 fi
43
44 VERSION=$1
45 PREVIOUS_VERSION=$(git tag --sort=-creatordate | head -1)
46 git tag --format='%(creatordate:short)%09%(refname:strip=2)'
47 echo
48 echo "PREVIOUS_VERSION=${PREVIOUS_VERSION}"
49 echo
50 if ! ask_y_n "About to cut (build, test, package, give you the command to upload) $VERSION, ok?" "N"; then
51     echo "Ok, exiting instead."
52     exit 0
53 fi
54 echo
55
56 echo "Ok, here are the commit message of changes since the last version..."
57 LAST_TAG=$(git tag | tail -1)
58 git log $LAST_TAG..HEAD
59 pause
60 echo
61 echo
62
63 echo "Ok, running scottutilz tests including test_some_dependencies.py..."
64 cd ../scottutilz/tests
65 ./run_tests.py --all --coverage
66 cd ../../pyutils
67 pause
68 echo
69 echo
70
71 echo "Creating a git tag for version ${VERSION}"
72 git tag -a "${VERSION}" -m "cut_version.sh ${VERSION}"
73 CHANGES=$(git log --pretty="- %s" $VERSION...$LAST_TAG)
74 printf "# 🎁 Release notes (\`$VERSION\`)\n\n## Changes\n$CHANGES\n\n## Metadata\n\`\`\`\nThis version -------- $VERSION\nPrevious version ---- $PREVIOUS_VERSION\nTotal commits ------- $(echo "$CHANGES" | wc -l)\n\`\`\`\n" >> release_notes.md
75
76 echo "Updating pyproject.toml with this version number"
77 cat ./pyproject.template | sed s/##VERSION##/$VERSION/g > ./pyproject.toml
78
79 echo "Building..."
80 python -m build
81
82 echo "Checking in binary wheel package"
83 WHEEL=dist/pyutils-latest-py3-none-any.whl
84 if [ ! -f ${WHEEL} ]; then
85     echo "Can't find ${WHEEL}?!"
86     exit 1
87 fi
88 LINK=dist/pyutils-latest-py3-none-any.whl
89 git rm ${LINK}
90 ln -s ${WHEEL} dist/pyutils-latest-py3-none-any.whl
91 git add ${WHEEL}
92 git add ${LINK}
93 git commit -a -m "Cut version ${VERSION}" -m "${CHANGES}"
94
95 echo "Pushing changes"
96 git push
97
98 echo "Done.  To upload, run: \"twine upload --verbose --repository testpypi dist/*\""