2003-09-15 09:16:44 +00:00
update the release date in the changelog
2007-11-06 22:23:22 +00:00
change to reflect actual pmd.jar file version
2007-11-13 20:11:24 +00:00
change pmd.props to reflect the new pmd-jedit release version.
change jedit.html to reflect the new pmd-jedit release version, and update its release notes
2003-10-31 06:16:49 +00:00
change the build.xml to reflect pmd-jedit release
2005-05-16 10:07:48 +00:00
update doing_the_next_pmd_jedit_release.txt(this file) to the new pmd-jedit release version
2005-12-05 06:58:32 +00:00
commit the above changes FIRST!!
2003-09-15 09:16:44 +00:00
Create the binary release - 'ant release'
Unzip it into jedit.home/jars
TESTS:
1) Can you run jedit ok?
2) Can you run it it on a file and find some unused code?
3) Are options persistant?
4) Does CPD work?
2003-10-31 07:00:47 +00:00
5) Check if the PMD Help shows correct data like Release notes, help/new features.
2004-08-16 09:35:33 +00:00
6) Re-Commit if changes were made in the above steps first!!
2003-09-15 09:16:44 +00:00
Create the src release:
2005-12-05 06:58:32 +00:00
cvs -q rtag -D tomorrow "pmd_jedit_release_2_6" pmd-jedit
2003-09-15 09:16:44 +00:00
rm -rf ~/tmp/pmd-jedit
mkdir -p ~/tmp/pmd-jedit
2005-12-05 06:58:32 +00:00
cvs -q export -d tmp -r pmd_jedit_release_2_6 pmd-jedit
2003-09-15 09:16:44 +00:00
mv tmp/* ~/tmp/pmd-jedit
rmdir tmp/
2003-10-31 06:59:31 +00:00
cp pmd-jedit/PMDPlugin/lib/PMDPlugin.jar ~/tmp/pmd-jedit/PMDPlugin/lib
copy other relevant libraries to ~/tmp/pmd-jedit/PMDPlugin/lib
2003-09-15 09:16:44 +00:00
cd ~/tmp
2005-12-05 06:58:32 +00:00
zip -q -r pmd-jedit-src-2.6.zip pmd-jedit
2003-09-15 09:16:44 +00:00
rm -rf pmd-jedit
2006-01-10 09:16:29 +00:00
ncftpput upload.sourceforge.net incoming/ pmd-jedit-src-2.6.zip pmd-jedit-bin-2.6.zip
2003-09-15 09:16:44 +00:00
Go to Admin, Edit/Release Files, click on Add new release
Paste stuff into the changelog/readme boxes
Add the 2 zip files
Classify the file
Submit some news saying "hey, new release of the JEdit plugin!"
2006-01-10 10:50:30 +00:00
Life saving commands :)
To retag a file to a new version.
To move a symbolic tag to a different version (using the numeric number), use the following:
cvs tag -r new-number -F symbolic-name filename
For example, if you needed to update foo.c after testing, and the symbolic tag MPICH2_1_0_3_rc1 originally pointed at version 1.16 for this file but the corrected version was 1.17, use
cvs tag -r 1.17 -F MPICH2_1_0_3_rc1 foo.c