Dear Wiki user, You have subscribed to a wiki page or wiki category on "Blur Wiki" for change notification.
The "HowToRelease" page has been changed by AaronMcCurry: https://wiki.apache.org/blur/HowToRelease?action=diff&rev1=22&rev2=23 git checkout -b apache-blur-X.Y git push origin apache-blur-X.Y }}} + + NOTE: After the release has been voted on and is successful then bump of the version of master. (See instruction below) - * Bump the version number in trunk (the update-versions script mangles the whitespace in the root XML element): - {{{ - git checkout master - for file in $(find . -name pom.xml); do - sed -i "" -e "s/0.1.0-SNAPSHOT/0.2.0-SNAPSHOT/" $file; - done - git add {all pom.xml files} - }}} - * Bump the version in docs/cluster-setup.html - * Bump the version in docs/data-model.html - * Bump the version in docs/getting-started.html - * Commit these changes to trunk. - {{{ - git add {html files above} - git commit -m "In prep for release, moving master to new version." - git push origin master - }}} - * Checkout the release branch - {{{ - git checkout apache-blur-X.Y - }}} = Update the Release Branch = @@ -71, +52 @@ sed -i "" -e "s/0.1.0-SNAPSHOT/0.1.0/" $file; done }}} + + You will also need to update the version in these files: + + * Update the version in docs/cluster-setup.html + * Update the version in docs/data-model.html + * Update the version in docs/getting-started.html + * Commit these changes to the branch. = Run Tests = @@ -290, +278 @@ The release needs 3 +1 votes from the PMC. + = Bump Version in master = + + * Bump the version number in trunk (the update-versions script mangles the whitespace in the root XML element): + {{{ + git checkout master + for file in $(find . -name pom.xml); do + sed -i "" -e "s/0.1.0-SNAPSHOT/0.2.0-SNAPSHOT/" $file; + done + git add {all pom.xml files} + }}} + * Bump the version in docs/cluster-setup.html + * Bump the version in docs/data-model.html + * Bump the version in docs/getting-started.html + * Commit these changes to trunk. + {{{ + git add {html files above} + git commit -m "In prep for release, moving master to new version." + git push origin master + }}} + = Roll Out = Assuming the vote passes, the release can be rolled out as follows:
