Skip to content

Commit

Permalink
Updating release documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse Yates committed Apr 5, 2017
1 parent 7293528 commit 14db2ad
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,11 @@ The internal build handles pushing the jars and updating the latest versions. Pu
* master
* release-<version>

After the release completes, update the master branch onto stable and then update the version:
After the release completes, update the master branch onto stable and force the master changes on top of stable (e.g. the pom versions should be [new version]-SNAPSHOT)

```
$ nextVersion=$version+1-SNAPSHOT
$ git checkout master
$ git pull origin
$ git rebase stable
$ mvn -f java/pom.ml versions:set -DnewVersion=$nextVersion
$ git commit -A -m "updating poms for $nextVersion development"
```
$ git rebase stable -s recursive -X theirs
$ git push origin -f
```

0 comments on commit 14db2ad

Please sign in to comment.