Skip to content

Latest commit

 

History

History
65 lines (46 loc) · 1.21 KB

File metadata and controls

65 lines (46 loc) · 1.21 KB

6. Release Branch

Date Phase
February 15th Release

It is now time to begin testing v1.1 of the app and submit it for the magazine's review

🏃 Activities

1 - Create a Release Branch

Maintainers

Bring your local develop branch up to date with the source repository:

$ git checkout develop

$ git pull

Create a new branch off of develop named release-1.1:

$ git checkout -b release-1.1

Bump the version number to 1.1:

major=1
minor=1
patch=0

Finally, stage and commit the change:

$ git add app/VERSION

$ git commit -m "Bump version to 1.1"

2 - Publish the Release Branch

Maintainers

Choose a maintainer to publish the release branch to the source repository:

$ git push -u origin HEAD

Next

Next we will walk through the process of fixing bugs in the release branch.

Go

Quick Links