1 | =================================================== |
---|
2 | Release procedure for the MEV Launcher package |
---|
3 | =================================================== |
---|
4 | |
---|
5 | Follow these instructions to release version A.B of |
---|
6 | this package. Please update the instructions if you |
---|
7 | find 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: <property name="version" value="A.B" /> |
---|
16 | * In META-INF/extensions.xml: <version>A.B</version> |
---|
17 | |
---|
18 | 3. Make sure that the code compiles and can be packaged. |
---|
19 | |
---|
20 | ant package |
---|
21 | |
---|
22 | will create the file 'mev-launcher-A.B.tar.gz' in |
---|
23 | the project directory. |
---|
24 | |
---|
25 | 4. Make sure that the installation of the MEV Launcher works |
---|
26 | and that the installation instructions are up to date. |
---|
27 | |
---|
28 | 5. When everything is OK, commit any changes to subversion. |
---|
29 | |
---|
30 | 6. Create a tag in subversion: |
---|
31 | |
---|
32 | svn copy http://baseplugins.thep.lu.se/svn/extensions/net.sf.basedb.mev/trunk \ |
---|
33 | http://baseplugins.thep.lu.se/svn/extensions/net.sf.basedb.mev/tags/A.B \ |
---|
34 | -m "Tagging release A.B" |
---|
35 | |
---|
36 | 7. Upload the packaged release as an attachment to: |
---|
37 | http://baseplugins.thep.lu.se/wiki/net.sf.basedb.mev |
---|
38 | |
---|
39 | 8. Edit the http://baseplugins.thep.lu.se/wiki/net.sf.basedb.examples.mev |
---|
40 | page: |
---|
41 | |
---|
42 | * Add a new entry to the Download table |
---|
43 | * Change the README link to point to the tagged release. Use |
---|
44 | the following wiki code: |
---|
45 | [source:/extensions/net.sf.basedb.mev/tags/A.B/README README] |
---|
46 | |
---|
47 | 9. Create a new milestone: 'MEV Launcher vA.B+1' |
---|
48 | |
---|
49 | 10. Close the 'MEV Launcher A.B' milestone. Move |
---|
50 | any remaining tickets to the newly create milestone. |
---|
51 | |
---|
52 | 11. Update the version number in build.xml. |
---|
53 | |
---|
54 | <property name="version" value="A.B+1" /> |
---|
55 | |
---|
56 | Commit the change to subversion: |
---|
57 | |
---|
58 | svn commit -m "Preparing for future release A.B+1" |
---|
59 | |
---|