![]() |
FOSSology Advancing open source analysis and development |
|
Table of Contents
How to Create a New ReleaseIncrement Version Number AppropriatelyFirst thing’s first... How do you increment version numbers? This mailing list post describes the version number in detail. To summarize: A.B.C where A = Major release number
Reason for change:
schema and/or agent API _breakage_
B = Minor release number
Reasons for change:
schema and/or agent APIs are _added_ or _extended_
new agents added
security fixes
major roll up of bugfixes
C = Bugfix release number
Reasons for change:
any bugfix worth doing a new release/test cycl
Tagging the release in subversion
svn mkdir https://fossology.svn.sourceforge.net/svnroot/fossology/tags/A.B.C
svn copy -r NNN https://fossology.svn.sourceforge.net/svnroot/fossology/trunk/fossology \ https://fossology.svn.sourceforge.net/svnroot/fossology/tags/A.B.C/
In the case where you’re tagging the top of tree, you can omit the
svn delete https://fossology.svn.sourceforge.net/svnroot/fossology/tags/0.8.0/fossology/<full path to file(s)> svn copy https://fossology.svn.sourceforge.net/svnroot/fossology/trunk/fossology/<full path to replacement file(s)> \ https://fossology.svn.sourceforge.net/svnroot/fossology/tags/A.B.C/<full path to destination dir> Now you should have a nice tidy directory in /tags/A.B.C/fossology/ where the released bits live. From here you can proceed to rolling a tarball and uploading the file release to sourceforge. Creating a tarballTo create a tarball, check out the released version. Within that directory, simply run make tar-release
This will create a file called Now you’re ready to do a file release on Sourceforge! Creating a Sourceforge file release
Writing Release NotesYou must create a set of release notes in Dokuwiki at http://fossology.org/release_notes Simply add the release notes to the top of the page, shifting all the previous versions down below them. Be sure to highlight all the new features, bugfixes, any other errata. Add news blurb to front pageBe sure to update the http://fossology.org/ front page with a short news blurb about the new release. You may also want to remove the oldest news blurb as well, to keep the page a bit current and up-to-date. Sending email announcementFinally it’s important to send an announcement of the new release to the mailing list.
Email to Subject: Announcing FOSSology A.B.C Release The FOSSology Project is pleased to announce the release of FOSSology A.B.C. New in version A.B.C: * New feature * New feature * Important bug fix * etc... don't get too specific, but try to highlight the major changes For more information on the FOSSology project and to download the software, please visit http://fossology.org/ -- About FOSSology -- FOSSology is a Free Open Source Software (FOSS) project built around an open and modular architecture for analyzing software. Existing modules include license analysis, meta data extraction, and MIME type identification. This open source software tool analyzes a given set of software packages, and reports items such as the software licenses used by these packages. More than simply reporting, “Package X uses license Y,” the FOSSology tool attempts to analyze every file within the package to determine its license. The license report is thus an aggregate of all of the different licenses found to be in use by a package. A single package may be labeled as “GPL” but contain files that use other licenses (BSD, OSL, or any of the hundreds of other licenses). Even if an exact license is unknown, the license may be identifiable by common license phrases. The FOSSology Project started as an internal software development effort within Hewlett Packard’s Open Source and Linux Organization. The tool evolved over several years at HP from a few simple shell scripts to the much more comprehensive tool you see today. Enjoy! The FOSSology team Post-incrementing the version number in svn
After making a release, increment the version number in
For example if the release you just completed was FOSSology Project documentation is licensed under the GNU Free Documentation License Version 1.2 | |||