This repository has been archived by the owner on Apr 21, 2018. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump components to releases on Fiji update site
The following component versions are present on the update site: * TrackMate_ 2.7.1 * Trainable_Segmentation 2.1.8 Hence, these should also be the versions declared in pom-fiji. See: fiji/fiji#37
- Loading branch information
820c172
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that this
TrackMate
version was not actually deployed to Maven, which made this pom invalid. Fixed for now but makes me feel like we do need to enforce standardized release processes.820c172
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The question is: how often will we have to fix this stuff, versus how much time will it take to improve the tooling even further and then educate Fiji plugin authors about the new release process?
While I agree with you 100%, my current feeling is that we should hold off on any further tooling work for at least the first half of this year.
820c172
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In this case, the people doing the releases are @tinevez and @StephanPreibisch. Also @iarganda is active doing releases. For now, it would be faster to just educate them (hi guys!) on our desired release process, than to do the eventual tooling work we want to have.
820c172
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Understood!
I guess the decoupling between Fiji and its flock of plugin as I pictured it was too perfect to be functional.(Though, did you notice we are perfectly able to work in a relatively unsynchronized manner? It's a tribute to the work done in the past 2 years)
My understanding of the plugin release process is the following:
Right? Did I miss something? Are some steps non mandatory?
820c172
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tinevez For the moment, the recommended workflow is as follows:
pom.xml
to the desired release version (e.g., change4.5.6-SNAPSHOT
to4.5.6
).pom.xml
again to the next SNAPSHOT version (e.g., change4.5.6
to4.5.7-SNAPSHOT
). Commit and push to master.I sometimes refer to this as the "double-push to master" release process.
Other actions are optional; e.g.:
pom-fiji
to reference the newly released version.In particular, you guys will rarely need to worry about the
pom-fiji
updates for the time being.The reason I say this is the process "for the moment" is that we have in mind an improved process, which we hope to implement later this year: make Jenkins always automatically upload the state of https://github.com/fiji/fiji master branch to the Fiji update site. Once we do this, there will be no more need to ever manually upload something to the update site, because it will be kept in sync with the source repository. At the moment, there is still skew; see fiji/fiji#39 and fiji/fiji#37.
We will probably also eventually want to move away from the double-push-to-master release process in favor of using the Maven release plugin, via our release-version.sh script. This script is better because it performs additional important actions—in particular, it sets the
<tag>
properly in the POM file, and does the release commit as an orphaned tag off the master branch.