source: extensions/net.sf.basedb.reggie/trunk/RELEASE @ 1282

Last change on this file since 1282 was 1282, checked in by Nicklas Nordborg, 13 years ago

Initial checkin of main structure for Reggie. This compiles an extension package that installs a "Reggie" menu item in the "Extensions" menu.

File size: 2.4 KB
Line 
1===================================================
2Release procedure for the Reggie extension package
3===================================================
4
5Follow these instructions to release version A.B of
6this package. Please update the instructions if you
7find anything that is not correct or missing.
8
9 1. Make sure that all changes have been committed to
10    the trunk. Check with other developers if not
11    sure.
12
13 2. Update the version number.
14   
15    In build.xml:
16      <property name="version" value="A.B" />
17      <property name="minbaseversion" value="X.Y" />
18     
19    Run `ant update-version`. This should put the version
20    numbers in a lot of files, including,
21    META-INF/extensions.xml.
22   
23    Check (and update if needed) the README file and
24    and the wiki pages (see also step 8 and 9 below):
25   
26      http://baseplugins.thep.lu.se/wiki/net.sf.basedb.reggie
27      http://baseplugins.thep.lu.se/wiki/PluginDownload
28
29 3. Make sure that the code compiles and can be packaged.
30 
31    ant package
32   
33    will create the file 'reggie-A.B.tar.gz' in
34    the project directory.
35 
36 4. Make sure that the installation of Reggie works
37    and that the installation instructions are up to date.
38   
39 5. When everything is OK, commit any changes to subversion.
40
41 6. Create a tag in subversion:
42
43    svn copy http://baseplugins.thep.lu.se/svn/extensions/net.sf.basedb.reggie/trunk \
44        http://baseplugins.thep.lu.se/svn/extensions/net.sf.basedb.reggie/tags/A.B \
45        -m "Tagging release A.B"
46
47 7. Upload the packaged release as an attachment to:
48    http://baseplugins.thep.lu.se/wiki/net.sf.basedb.reggie
49
50 8. Edit the http://baseplugins.thep.lu.se/wiki/net.sf.basedb.examples.reggie
51    page:
52   
53    * Add a new entry to the Download table
54    * Change the README link to point to the tagged release. Use
55      the following wiki code:
56      [source:/extensions/net.sf.basedb.reggie/tags/A.B/README README]
57    * Check the information on the download page
58      http://baseplugins.thep.lu.se/wiki/PluginDownload
59      and make sure it is correct
60
61 9. Create a new milestone: 'Reggie vA.B+1'
62
6310. Close the 'Reggie vA.B' milestone. Move
64    any remaining tickets to the newly create milestone.
65
6611. Update the version numbers.
67 
68    In build.xml: <property name="version" value="A.(B+1)pre" />
69    Run `ant update-version` and commit the changes to
70    subversion:
71     
72    svn commit -m "Preparing for future release A.B+1"
73     
Note: See TracBrowser for help on using the repository browser.