The release procedure here will create
dev
branch, but could be a special-purpose branch just for this release. Be sure to ask any developers or stakeholders if they have everything they are working on merged into the branch.build.gradle
find the line that begins with "version". Remove the "-SNAPSHOT" from the version identifier. Note the version for the next step.CHANGELOG.md
, under the heading for the version to be released, remove the text "Not yet released." and replace with the text "[Released ${DATE}](https://github.com/NrgXnat/container-service/releases/tag/${VERSION})." where ${DATE} and ${VERSION} should be filled in with today's date and the version noted in the previous step.build.gradle
find the line that begins with "version". Increment the version number (we will refer to this value later as ${NEW_VERSION}). Add "-SNAPSHOT" to the end of the version identifier.CHANGELOG.md
, add a new heading (with two # marks) for ${NEW_VERSION}. Below the heading, add the text "Not yet released." Add sub-headings (with three # marks) for "Features" and "Bugfixes".