-
Notifications
You must be signed in to change notification settings - Fork 218
/
Copy pathrelease.sh
executable file
·39 lines (29 loc) · 1.06 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
#!/usr/bin/zsh
# Make sure we are at the right directory.
cd $(dirname $0)/..
git clean -xdf
CURRENT_VERSION=$(grep -E 'our \$VERSION = "[\.0-9]+";' lib/App/perlbrew.pm | grep -Eo '[\.0-9]+' | tail -1)
RELEASE_VERSION=$((CURRENT_VERSION + 0.01))
RELEASE_TIMESTAMP=$(date +'%FT%T%z')
RELEASE_THANKS=$(git shortlog -s "$(git tag --list release-'*' | tail -1)"..HEAD | grep -v "$(git config user.name)" | perl -nE 'push@a,(split /[\t\n]/)[1]}{say join(", ",@a)')
echo '#' $CURRENT_VERSION '->' $RELEASE_VERSION
(
cat lib/App/perlbrew.pm | sed 's/our $VERSION = "'${CURRENT_VERSION}'";/our $VERSION = "'${RELEASE_VERSION}'";/'
) > lib/App/perlbrew.pm.new
mv lib/App/perlbrew.pm.new lib/App/perlbrew.pm
echo '# update Changes'
(
echo ${RELEASE_VERSION}
echo ' - Released at' ${RELEASE_TIMESTAMP}
echo ' - Thanks to our contributors:' ${RELEASE_THANKS}
echo
cat Changes
) > Changes.new
mv Changes.new Changes
echo '# rebuild'
./dev-bin/build.sh
echo '# mbtiny regenerate'
mbtiny regenerate
echo '# ' Now, check them:
echo '> git status '
git status