fix new battery plugin to work better with multiple batteries present
[wmiirc-lua.git] / doc / release-notes
blobb8ba818c0fd5b7247abc78de82a8b4640c604ffc
1 About
2 ======
3 This file lists steps that I use to release the project.  It is probably
4 not of interest to you. :)
6 Branches
7 =========
8     master   - current development stream
9     release  - last stable release
10     debian   - changes for debian packages
11     pu       - proposed updates
13  Development will occur on 'master', releases will be pushed out on 'release',
14  and any (experimental) patches not yet in 'master' will be put on 'pu'.
16 Base release     (master -> release)
17 =============
19  VERSION="0.2"
21  git checkout -f release
22  git merge master
23  git tag -s v$VERSION                           # enter description
25  git pushall --tags
27 Debian release   (release -> debian)
28 ===============
30  VERSION="0.2"
31  DEBVERSION="${VERSION}-1"
33  git checkout -f debian
34  git merge v$VERSION
36  dch -v $DEBVERSION
38  git commit -m"debian $DEBVERSION" debian/
40  git-buildpackage --git-tag
42  # alternatively, this is a hack to force unsigned releases...
43  git-buildpackage --git-ignore-new --git-no-sign-tags --git-builder='debuild -i\.git -I.git -uc -us' --git-tag
45  git pushall --tags
49 vim: set ts=8 et sw=8 tw=72