forked from pycontribs/jira
-
Notifications
You must be signed in to change notification settings - Fork 2
/
release.sh
executable file
·61 lines (46 loc) · 1.68 KB
/
release.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/bin/bash
set -e
TAG=$(git describe $(git rev-list --tags --max-count=1))
VERSION=$(python setup.py --version)
echo "INFO: Preparing to release version ${VERSION} based on git tag ${TAG}"
exit 1
if testvercomp $TAG $VERSION '<'; then
echo "."
else
echo >&2 "ERROR: Current version and git tag do not match, cannot make release."
exit 1
fi
echo "INFO: Checking that all changes are committed and pushed"
git pull
#git diff
# Disallow unstaged changes in the working tree
if ! git diff-files --check --exit-code --ignore-submodules -- >&2
then
echo >&2 "ERROR: You have unstaged changes."
#exit 1
fi
# Disallow uncommitted changes in the index
if ! git diff-index --cached --exit-code -r --ignore-submodules HEAD -- >&2
then
echo >&2 "ERROR: Your index contains uncommitted changes."
#exit 1
fi
# Use the gitchangelog tool to re-generate automated changelog
gitchangelog > CHANGELOG
if [ -z ${CI+x} ]; then
echo "WARN: Please don't run this as a user. This generates a new release for PyPI. Press ^C to exit or Enter to continue."
else
echo "INFO: Automatic deployment"
fi
git add CHANGELOG
git commit -m "Auto-generating release notes."
git tag -fa ${VERSION} -m "Version ${VERSION}"
git tag -fa -a RELEASE -m "Current RELEASE"
NEW_VERSION="${VERSION%.*}.$((${VERSION##*.}+1))"
set -ex
sed -i.bak "s/${VERSION}/${NEW_VERSION}/" setup.py
git commit -m "Auto-increasing the version number after a release."
# disables because this is done only by Travis CI from now, which calls this script after that.
#python setup.py register sdist bdist_wheel build_sphinx upload --sign
git push --force origin --tags
echo "INFO: done."