Changes between Version 9 and Version 10 of ReleaseProcedure
- Timestamp:
- Sep 22, 2014, 10:00:53 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ReleaseProcedure
v9 v10 5 5 * That file should include new features, changed features, and deprecated features if any. Changes to the official documentation should be specifically noted along with other items that will cause breaking changes during upgrades. 6 6 * Read the documentation and remove outdated parts. 7 * Create release candidate as .zip and .tar. gzthen add them on this [http://zoo-project.org/site/Downloads page] (by editing this wiki page: [http://zoo-project.org/trac/wiki/Downloads ref.])7 * Create release candidate as .zip and .tar.bz2 then add them on this [http://zoo-project.org/site/Downloads page] (by editing this wiki page: [http://zoo-project.org/trac/wiki/Downloads ref.]) 8 8 * Cut a release candidate once you think that everything is in order. Announce the release candidate for review for at least 1 week. In this period of time, it is also appropriate for you to deploy in production since you are asserting that it is stable and (significant) bug free. Publish a specific revision with this. 9 9 * If significant bugs are reported, fix and cut a new release candidate. If no major bugs, then announce that the release candidate has officially been promoted to the official release (if you want, you can do this with a motion and support of the PSC). … … 39 39 }}} 40 40 41 * Create version archives 42 43 {{{ 44 export VERSION=2.6.0 45 cd zoo-propject-svn 46 cp -r trunk zoo-project-$VERSION 47 cd zoo-project-$VERSION 48 rm -rf $(find ./ -name ".svn") 49 cd zoo-project/zoo-kernel 50 autoconf 51 cd ../../.. 52 tar -cvjf ./zoo-project.$VERSION.tar.bz2 ./zoo-project-$VERSION 53 zip -r ./zoo-project-$VERSION.zip ./zoo-project-$VERSION 54 }}}