Skip to content
This repository was archived by the owner on Nov 9, 2022. It is now read-only.

Creating a Roxy Release

paxtonhare edited this page Nov 2, 2014 · 5 revisions

How to Create a Roxy Release

Create a release branch

$ git checkout -b 1-7-0 -t origin/dev

Ready the release

  1. Make sure tests are passing:
    $ ml self-test
  2. Update the CHANGELOG.md file
  3. Update the version.txt file
  4. Push the changes $git push origin 1-7-0

Merge to dev

  1. $ git checkout dev
  2. $ git merge 1-7-0

Merge to master

  1. $ git checkout master
  2. $ git merge 1-7-0
Clone this wiki locally