Repository: commons-rng Updated Branches: refs/heads/master 37af17375 -> 317105c0b
Update release howto. Project: http://git-wip-us.apache.org/repos/asf/commons-rng/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-rng/commit/317105c0 Tree: http://git-wip-us.apache.org/repos/asf/commons-rng/tree/317105c0 Diff: http://git-wip-us.apache.org/repos/asf/commons-rng/diff/317105c0 Branch: refs/heads/master Commit: 317105c0b95269869d0b6f6ba114ab7ddce83ded Parents: 37af173 Author: Gilles <er...@apache.org> Authored: Sat Dec 10 22:46:03 2016 +0100 Committer: Gilles <er...@apache.org> Committed: Sat Dec 10 22:46:03 2016 +0100 ---------------------------------------------------------------------- doc/release/release.howto.txt | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-rng/blob/317105c0/doc/release/release.howto.txt ---------------------------------------------------------------------- diff --git a/doc/release/release.howto.txt b/doc/release/release.howto.txt index 2ad8997..87d4539 100644 --- a/doc/release/release.howto.txt +++ b/doc/release/release.howto.txt @@ -560,18 +560,29 @@ Clean up files and prepare for next version (here we assume it will be 1.1): Edit "doap_rng.rdf" to add the just released version date. -Edit "pom.xml" to contain +Edit every "pom.xml" file (i.e. for each module) to contain <version>1.1-SNAPSHOT</version> Edit "src/changes/changes.xml" to add a new section for the next release, setting the release date to "TBD" and the description to the empty string. -Double-check that the "pom.xml" file *really* has a "-SNAPSHOT" suffix in -the "<version>" property. +Double-check that the "pom.xml" files *really* have a "-SNAPSHOT" suffix +in the "<version>" property. Then commit everything: - $ git add doap_rng.rdf pom.xml src/changes/changes.xml + $ git add \ + doap_rng.rdf \ + src/changes/changes.xml \ + pom.xml \ + commons-rng-client-api/pom.xml \ + commons-rng-core/pom.xml \ + commons-rng-simple/pom.xml \ + commons-rng-sampling/pom.xml \ + commons-rng-jmh/pom.xml \ + commons-rng-examples/pom.xml \ + dist-archive/pom.xml + $ git commit -m "Preparing next version (1.1)" $ git push @@ -580,7 +591,7 @@ Then commit everything: Switch back to branch "master" and merge the "1.0-release" branch $ git checkout master - $ get merge 1.0-release + $ git merge 1.0-release $ git push