We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a0ad93 commit c07f1a6Copy full SHA for c07f1a6
Makefile
@@ -23,11 +23,10 @@ readme:
23
sed -i '/(#$(PACKAGE)-py)/,+2d' README.md
24
25
release:
26
- git checkout master
27
- git pull origin
28
- git fetch -p
29
- git commit -a -m 'v$(VERSION)'
30
- git tag -a v$(VERSION) -m 'v$(VERSION)'
+ git checkout master && git pull origin && git fetch -p
+ git log --pretty=format:"%C(yellow)%h%Creset %s%Cgreen%d" --reverse -20
+ @echo "Releasing v$(VERSION) in 10 seconds. Press <CTRL+C> to abort" && sleep 10
+ git commit -a -m 'v$(VERSION)' && git tag -a v$(VERSION) -m 'v$(VERSION)'
31
git push --follow-tags
32
33
templates:
0 commit comments