Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Sisu/Milestones"

m
m
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
== Latest Milestones ==
 
== Latest Milestones ==
  
 +
* 0.3.0.M1 → Java8 support and performance fixes
 +
* 0.2.0.M2 → @PostConstruct and @PreDestroy support
 +
* 0.2.0.M1 → @Priority support (and plexus map improvements)
 
* 0.0.0.M5 → Documentation and fixes
 
* 0.0.0.M5 → Documentation and fixes
 
* 0.0.0.M4 → Sisu extension support
 
* 0.0.0.M4 → Sisu extension support
 
* 0.0.0.M3 → API refactoring and cleanup
 
* 0.0.0.M3 → API refactoring and cleanup
* 0.0.0.M2a → minor regression fixes
+
* 0.0.0.M2a → Minor regression fixes
 
* 0.0.0.M2 → Plexus configurator work
 
* 0.0.0.M2 → Plexus configurator work
* 0.0.0.M1 → additional plexus support
+
* 0.0.0.M1 → Additional Plexus support
* 0.0.0.M0 → initial contribution
+
* 0.0.0.M0 → Initial contribution
  
 
== Staging Process ==
 
== Staging Process ==
Line 14: Line 17:
  
 
<pre>
 
<pre>
sh bin/prepare_milestone.sh 0.2.0.M1
+
sh bin/prepare_milestone.sh 0.3.0.M2
  
GPG_KEYNAME=myuser@mymail.com sh bin/perform_milestone.sh 0.2.0.M1 "various fixes"
+
GPG_KEYNAME=myuser@mymail.com sh bin/perform_milestone.sh 0.3.0.M2 "various fixes"
  
 
git push --tags  # only push tags once you're happy with the staged milestone
 
git push --tags  # only push tags once you're happy with the staged milestone

Revision as of 07:39, 4 September 2014

Latest Milestones

  • 0.3.0.M1 → Java8 support and performance fixes
  • 0.2.0.M2 → @PostConstruct and @PreDestroy support
  • 0.2.0.M1 → @Priority support (and plexus map improvements)
  • 0.0.0.M5 → Documentation and fixes
  • 0.0.0.M4 → Sisu extension support
  • 0.0.0.M3 → API refactoring and cleanup
  • 0.0.0.M2a → Minor regression fixes
  • 0.0.0.M2 → Plexus configurator work
  • 0.0.0.M1 → Additional Plexus support
  • 0.0.0.M0 → Initial contribution

Staging Process

Scripts are available to prepare and stage Sisu milestones:

sh bin/prepare_milestone.sh 0.3.0.M2

GPG_KEYNAME=myuser@mymail.com sh bin/perform_milestone.sh 0.3.0.M2 "various fixes"

git push --tags  # only push tags once you're happy with the staged milestone

Note: Sisu is still incubating so all versions must start with 0.

Back to the top