Minor change to buildgen.sh for personal ctags use
[barry/progweb.git] / doc / ReleaseChecklist.txt
blob9d3efa967ee38beee206d508dcca1a2a04690222
1 Barry Release Checklist:
2 ------------------------
3 - bump version numbers in
4         Note: make sure you check all control files below for both current
5         versions (i.e. libbarry0 (>= 0.18)) and the next version
6         (i.e. libbarry0 (<< 0.19)) since the binary packages should prevent
7         interaction with incompatible libraries this way.
8                 - configure.ac
9                 - gui/configure.ac
10                 - gui/src/BackupWindow.cc (about dialog)
11                 - desktop/src/Makefile.am (oswrapper lib version & include dir)
12                 - Doxyfile
13                 - rpm/barry.spec
14                 - debian/changelog
15                 - debian/control (libbarry0 should not depend on minor number)
16                 - debian/rules (the barry18 includedir)
17                 - opensync-plugin/configure.ac
18                 - opensync-plugin/src/barry_sync.cc
19                 - opensync-plugin-0.4x/configure.ac
20                 - opensync-plugin-0.4x/src/barry_sync.cc
21                 - opensync-plugin/debian/control (libbarry-dev)
22                 - opensync-plugin/debian/changelog (libbarry-dev)
23                 - opensync-plugin-0.4x/debian/control (libbarry-dev)
24                 - opensync-plugin-0.4x/debian/changelog (libbarry-dev)
25                 - files under po/
26                 - desktop/src/barrydesktop.cc
27 - test ABI / API and bump major or minor version as appropriate
28 - run all tests on a clean git tree, including build test script
29 - write release notes, including contributors, known issues, new
30         features and bugs fixed
31         - include mention of distros that support Barry:
32                 (see AUTHORS file for distro list)
33         - include description at the top of what Barry is
34 - web docs:
35         - bump version number and release date on index.php
36         - update known issues list
37         - check that all external links work, and point to proper content
38         - upload latest web docs to netdirect project page
39                 - run: ./static.sh netdirect
40         - upload latest doxygen docs to netdirect project page
41 - update root README file
42 - snip this version's changelog history into its own file
43 - tag CVS repo and sign-tag git repo with latest version
44 - run maintainer/tagged-release.sh
45 - manually push git tags to repo.or.cz and sourceforge.net
46 - upload packages to SourceForge
47         ssh -x -a -2 -t USER,PROJECT@shell.sourceforge.net create
48            then use sf-help for details
49         - Ubuntu: 7.10, 8.04, 9.04
50         - Fedora: 7, 8, 9, 11
51         - Debian: stable (lenny)
52         - openSUSE: ?
53 - submit tracker news item at SourceForge
54 - send announcement to devel and announce mailing list, including:
55         - release notes
56         - changelog
57         - URLs to sourceforge and OpenSUSE Build Service binary packages
58         - URL to netdirect doc page
59 - update Freshmeat entry
60 - update Sourceforge screenshots / icons if applicable
61 - send identi.ca/cdfrey and blog notices
62 - update source project, bumping revision numbers in source code
65 A note on the tags in Barry's git repository:
66 ---------------------------------------------
67 Each release will now have at least 3 tags.  For example, if releasing
68 version 0.14, the tags will be:
70         barry-0.14              Tag on master branch, signifying the
71                                 development point that the release occured
72         barry-0.14.tar.bz2      Contains the exact contents of the
73                                 full tar.bz2 release tarball.  If you
74                                 look far enough in the history logs, you will
75                                 find the barry-0.14 tag.
76         barry_0.14.orig.tar.gz  Contains the exact contents of the debian
77                                 source package tarball.  Again, barry-0.14
78                                 will be in this tag's history.
80 Basically, the first tag contains only the source code, and no generated
81 files.  The second tag (tar.bz2) contains the source code and all
82 generated files.  And the third tag (orig) contains all of tar.bz2
83 *except* the debian/ directory.  They are arranged so all history
84 merges back into the main non-generated source development tree.