Repository: incubator-apex-site Updated Branches: refs/heads/master de6a586f5 -> 0885d55a9
instructions for semantic versioning upgrade Project: http://git-wip-us.apache.org/repos/asf/incubator-apex-site/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-apex-site/commit/a68638eb Tree: http://git-wip-us.apache.org/repos/asf/incubator-apex-site/tree/a68638eb Diff: http://git-wip-us.apache.org/repos/asf/incubator-apex-site/diff/a68638eb Branch: refs/heads/master Commit: a68638eba660fb8da9434957eb1de15b96b74ddd Parents: d254887 Author: Vlad Rozov <[email protected]> Authored: Mon Feb 1 17:37:51 2016 -0800 Committer: Vlad Rozov <[email protected]> Committed: Wed Feb 3 15:01:24 2016 -0800 ---------------------------------------------------------------------- src/md/release.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-apex-site/blob/a68638eb/src/md/release.md ---------------------------------------------------------------------- diff --git a/src/md/release.md b/src/md/release.md index c8f2a7c..b19b591 100644 --- a/src/md/release.md +++ b/src/md/release.md @@ -193,9 +193,19 @@ git checkout release-3.2 dv=3.2.0-incubating-SNAPSHOT rv=3.2.1-incubating-SNAPSHOT for a in `git grep -l "${dv}"`; do echo $a; sed -i 's/'"${dv}"'/'"${rv}"'/g' $a; done +``` +The following steps should be completed only when releasing a new minor release (X.Y.0), otherwise please verify that all necessary changes are already in place. +Wait for the published release artifacts to be available in the Apache Maven repository and upgrade base version for semantic versioning maven plugin to +the published release (X.Y.0). If there are new artifacts published to maven repositories consider enabling semantic versioning check for the newly +published libraries. Set `<breakBuildOnModifications>` to `true`. + +Commit all changes and push them to the remote git repository: +```bash git commit -am "Preparing for 3.2.1 development" +git push apache ``` -Merge `@since` tag and change log changes to `master` +Merge `@since` tag and change log changes to `master`. If release is a new minor release (X.Y.0) implement the same changes in semantic versioning plugin +configurations as in the new release branch, except changing `<breakBuildOnModifications>`. ## Announce Release
