Skip to content

Commit

Permalink
Release 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gsemet committed Oct 2, 2018
1 parent 8250984 commit 2a49769
Show file tree
Hide file tree
Showing 3 changed files with 1,217 additions and 7 deletions.
12 changes: 7 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -425,22 +425,24 @@ release-note-github: reno-lint
sed 's/\\\#/\#/g' | \
tr '\r' '\n'

release: git-pull-rebase tag-pbr release-note-news rm-dists update-po dists release-git-tag release-note-github
release: git-pull-rebase tag-pbr release-note-news rm-dists update-po dists release-git-tag release-note-github git-commit-amend

git-pull-rebase:
git checkout master
git checkout -f master
git pull --rebase upstream master

release-git-tag:
@{ \
set -x \
export VERSION=$$(pipenv run python setup.py --version | cut -d. -f1,2,3); \
git commit --all -m "Release $$VERSION"; \
git commit --all -m "Release $$(pipenv run python setup.py --version | cut -d. -f1,2,3)"; \
PROJECTNAME=$$(pipenv run python setup.py --name); \
git tag -d $$VERSION; \
git tag -d "$$(pipenv run python setup.py --version | cut -d. -f1,2,3)"; \
echo "Note: tag has been removed. Use 'make tag-pbr' to tag and push to origin"; \
}

git-commit-amend:
git commit -a --amend

# aliases to gracefully handle typos on poor dev's terminal
check: checks
devel: dev
Expand Down
4 changes: 2 additions & 2 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Guake
=====

(unreleased yet)
================
3.4.0
=====

Release Summary
---------------
Expand Down
Loading

0 comments on commit 2a49769

Please sign in to comment.