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