Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Releasing Tycho"

 
(47 intermediate revisions by the same user not shown)
Line 1: Line 1:
This page describes the steps necessary to create releases of the Tycho project.
+
This is now moved to https://github.com/eclipse/tycho/blob/master/devdoc/Releasing_Tycho.md
 
+
*Prepare the [[Tycho/Release Notes]] which should provide a quick overview of new features and bug fixes
+
*Steps below apply to both [http://git.eclipse.org/c/tycho/org.eclipse.tycho.git/ tycho] and [http://git.eclipse.org/c/tycho/org.eclipse.tycho.extras.git/ tycho-extras] git repositories as these should normally be released together and with the same version
+
*Update versions using <tt>mvn org.eclipse.tycho:tycho-versions-plugin:set-version -DnewVersion=...</tt>
+
*Commit version change, create a git tag <tt>tycho-&lt;VERSION&gt;</tt> on this commit and create a new remote branch <tt>tycho-MAJOR.MINOR.x</tt> based on this commit in [http://git.eclipse.org/c/tycho/org.eclipse.tycho.git/ git]
+
*Update versions (same as above) to next <tt>-SNAPSHOT</tt> development version and push commit to <tt>master</tt> branch
+
*Make sure you have everything setup (GPG installed!) for deploying to the Nexus OSS repository, see [https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide guide]
+
*Add your credentials for server &lt;OSS_ID&amp;gt in ~/.m2/settings.xml
+
*Sync to release commit and deploy to nexus staging repository: <tt>mvn clean deploy -Prelease -DforgeReleaseId=&lt;OSS_ID&gt; -DforgeReleaseUrl=https://oss.sonatype.org/service/local/staging/deploy/maven2/</tt>
+
*<pre>Close the staging repository and announce the temporary stage URL on tycho-user@eclipse.org:
+
Subject:&nbsp;please test staged tycho &lt;VERSION&gt; Please help testing the staged tycho release &lt;VERSION&gt;. The staging repository URL is [1]. For details see release notes[2]. We plan to promote this release in one week unless major regressions are found. Regards, Tycho team [1] &lt;NEXUS_OSS_STAGING_URL&gt; [2] http://wiki.eclipse.org/Tycho/Release_Notes/&lt;VERSION&gt;
+
</pre>
+
 
+
*Generate site docs using <tt>mvn clean install site site:stage</tt> and check the result in to [http://www.eclipse.org/tycho/sitedocs tycho homepage site docs]
+
*Browse the [[:Category:Tycho|Tycho wiki pages]] to update any hardcoded tycho versions to the latest version
+
*Update [http://git.eclipse.org/c/tycho/org.eclipse.tycho-demo.git/ tycho-demo projects] to the latest release
+
*Announce the release on tycho-user@eclipse.org, tycho-dev@eclipse.org and the [http://www.eclipse.org/tycho tycho homepage new and noteworthy section]
+
 
+
[[Category:Tycho]]
+

Latest revision as of 07:09, 9 July 2021

This is now moved to https://github.com/eclipse/tycho/blob/master/devdoc/Releasing_Tycho.md

Back to the top