| 1 |
orrisroot |
1.4 |
Memorandum of How To Release. |
| 2 |
orrisroot |
1.1 |
|
| 3 |
orrisroot |
1.8 |
1. update change logs. |
| 4 |
|
|
- update product.xml in web resources 'web/htdocs/product.xml'. |
| 5 |
|
|
- run synchronization script. |
| 6 |
|
|
% cd src/changelog |
| 7 |
|
|
% ./make.sh (make.bat) |
| 8 |
|
|
|
| 9 |
|
|
2. update version number. |
| 10 |
orrisroot |
1.4 |
|
| 11 |
orrisroot |
1.1 |
- build.xml |
| 12 |
|
|
<property name="version" value="0.1.2"/> |
| 13 |
orrisroot |
1.4 |
|
| 14 |
orrisroot |
1.1 |
- installer/win32/samurai-graph-win32-inst.nsi |
| 15 |
|
|
!define SG_VER_MAJOR "0" |
| 16 |
|
|
!define SG_VER_MINOR "1" |
| 17 |
|
|
!define SG_VER_MICRO "2" |
| 18 |
orrisroot |
1.4 |
|
| 19 |
orrisroot |
1.1 |
- installer/mac/build.sh |
| 20 |
|
|
VERSION=0.1.2 |
| 21 |
orrisroot |
1.4 |
|
| 22 |
orrisroot |
1.1 |
- installer/mac/resources/bundler/Info.plist |
| 23 |
|
|
<key>CFBundleVersion</key> |
| 24 |
|
|
<string>0.1.2</string> |
| 25 |
|
|
<key>CFBundleShortVersionString</key> |
| 26 |
|
|
<string>0.1</string> |
| 27 |
|
|
<key>CFBundleGetInfoString</key> |
| 28 |
orrisroot |
1.2 |
<string>Samurai Graph 0.1.2, Copyright (c) 2004 RIKEN (The Institute of Physical and Chemical Research)</string> |
| 29 |
orrisroot |
1.4 |
|
| 30 |
|
|
- installer/mac/resources/bundler/version.plist |
| 31 |
|
|
<key>BuildVersion</key> |
| 32 |
|
|
<string>1</string> |
| 33 |
|
|
<key>CFBundleShortVersionString</key> |
| 34 |
|
|
<string>0.1</string> |
| 35 |
|
|
<key>CFBundleVersion</key> |
| 36 |
|
|
<string>0.1.2</string> |
| 37 |
|
|
<key>SourceVersion</key> |
| 38 |
|
|
<string>RELEASE_0_1_2</string> |
| 39 |
|
|
|
| 40 |
kuromaru |
1.12 |
- src/jp/riken/brain/ni/samuraigraph/application/SGIApplicationConstants.java |
| 41 |
kuromaru |
1.7 |
public static final int MAJOR_VERSION_NUMBER = 0; |
| 42 |
|
|
public static final int MINOR_VERSION_NUMBER = 1; |
| 43 |
|
|
public static final int MICRO_VERSION_NUMBER = 2; |
| 44 |
orrisroot |
1.1 |
|
| 45 |
orrisroot |
1.10 |
- installer/mac/resources/vector/README.txt |
| 46 |
|
|
Samurai Graph 0.3.2 |
| 47 |
|
|
samurai-graph-m032.dmg.gz |
| 48 |
|
|
samurai-graph-m032.dmg |
| 49 |
|
|
|
| 50 |
kuromaru |
1.13 |
- installer/win32/resources/vector/README.txt |
| 51 |
|
|
Samurai Graph 0.5.1 |
| 52 |
|
|
samurai-graph-w051.zip |
| 53 |
|
|
samurai-graph-w051 |
| 54 |
|
|
samurai-graph-win32-0.5.1.exe |
| 55 |
|
|
|
| 56 |
|
|
- installer/unix/resources/vector/README.txt |
| 57 |
kuromaru |
1.14 |
Samurai Graph 0.5.2 |
| 58 |
|
|
samurai-graph-u052.tar.gz |
| 59 |
|
|
samurai-graph-0.5.2 |
| 60 |
kuromaru |
1.13 |
|
| 61 |
orrisroot |
1.8 |
3. commit version updated sources. |
| 62 |
orrisroot |
1.4 |
% cvs commit |
| 63 |
|
|
|
| 64 |
orrisroot |
1.8 |
4. add tag to CVS repository. |
| 65 |
orrisroot |
1.1 |
% cvs tag RELEASE_0_1_2 |
| 66 |
|
|
|
| 67 |
orrisroot |
1.8 |
5. rebuild binaries. |
| 68 |
orrisroot |
1.1 |
% ./build.sh rebuild |
| 69 |
|
|
|
| 70 |
orrisroot |
1.8 |
6. create os specific installer |
| 71 |
orrisroot |
1.1 |
Windows: |
| 72 |
kuromaru |
1.3 |
run NSIS 2.0 compiler. |
| 73 |
orrisroot |
1.1 |
- installer/win32/samurai-graph-wiwn32-inst.nsi |
| 74 |
|
|
MacOS X: |
| 75 |
|
|
create disk image distribution file |
| 76 |
|
|
% cd installer/mac |
| 77 |
orrisroot |
1.9 |
% ./build.sh build |