(Detailed instructions on Sourceforge documentation)
First, verify that the SVN version works and is ready for release. Before releasing a version of the mwetoolkit, you should verify the following:
svn checkout svn://svn.code.sf.net/p/mwetoolkit/code/ mwetoolkit
mv mwetoolkit mwetoolkit_XX
Now, navigate through the folder structure and make sure you updated everything such as:
find -name old
, then removedoc
folder IMPORTANT: remove ALL .svn folders, as this is not necessary for a release and can make the final release file very fat ;-)
for f in $(ls -aR mwetoolkit_XX/ | grep '/.svn:' | sed 's/://g'); do rm -rf $f; done
zip -r mwetoolkit_XX.zip mwetoolkit_XX
In order to upload the release, you must put it at the home folder of the file server:
scp mwetoolkit_XX.zip username,mwetoolkit@frs.sourceforge.net:/home/frs/project/m/mw/mwetoolkit/
Open sourceforge files page and configure the new .zip as the default download file for all operating systems. Also move the previous release to old
folder.
Be a little patient because the release sometimes takes some time to show up at the project page. But after some minutes, it will be there :-)