diff options
Diffstat (limited to 'development.mdwn')
-rw-r--r-- | development.mdwn | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/development.mdwn b/development.mdwn index 26a865c..cfedb4b 100644 --- a/development.mdwn +++ b/development.mdwn @@ -46,12 +46,13 @@ Go to master branch Prepare the source code: + $EDITOR keyringer # and update KEYRINGER_VERSION $EDITOR ChangeLog make build_man Commit and tag a release: - VERSION="X.Y.Z" + VERSION="`./keyringer | head -n 1 | cut -d ' ' -f 2`" git commit -a -m "Keyringer $VERSION" git tag -s $VERSION -m "Keyringer $VERSION" @@ -74,6 +75,7 @@ Update the debian branch: git checkout debian git-import-orig --upstream-vcs-tag=$VERSION ../tarballs/keyringer-$VERSION.tar.bz2 dch -e # fine tune the changelog prepared by git-dch + git commit -a -m "Updating debian/changelog" Push everything: |