2011-11-08 23:20:20 +01:00
|
|
|
# Contributing to this module #
|
2011-05-24 20:48:50 +02:00
|
|
|
|
|
|
|
* Work in a topic branch
|
|
|
|
* Submit a github pull request
|
|
|
|
* Address any comments / feeback
|
2011-08-05 02:20:39 +02:00
|
|
|
* Merge into master using --no-ff
|
2011-11-08 23:20:20 +01:00
|
|
|
|
|
|
|
# Releasing this module #
|
|
|
|
|
|
|
|
* This module adheres to http://semver.org/
|
|
|
|
* Look for API breaking changes using git diff vX.Y.Z..master
|
|
|
|
* If no API breaking changes, the minor version may be bumped.
|
|
|
|
* If there are API breaking changes, the major version must be bumped.
|
|
|
|
* If there are only small minor changes, the patch version may be bumped.
|
2011-05-24 20:48:50 +02:00
|
|
|
* Update the CHANGELOG
|
2011-08-05 02:20:39 +02:00
|
|
|
* Update the Modulefile
|
2011-11-08 23:31:51 +01:00
|
|
|
* Commit these changes with a message along the lines of "Update CHANGELOG and
|
|
|
|
Modulefile for release"
|
|
|
|
* Create an annotated tag with git tag -a vX.Y.Z -m 'version X.Y.Z' (NOTE the
|
|
|
|
leading v as per semver.org)
|
2011-05-24 20:48:50 +02:00
|
|
|
* Push the tag with git push origin --tags
|
2011-11-08 23:20:20 +01:00
|
|
|
* Build a new package with puppet-module or the rake build task if it exists
|
2011-05-24 20:48:50 +02:00
|
|
|
* Publish the new package to the forge
|
2011-11-08 23:20:20 +01:00
|
|
|
* Bonus points for an announcement to puppet-users.
|