Skip to content
flowerinthenight edited this page Mar 28, 2019 · 3 revisions

Releasing a new SDK version

For the tag name, we follow the format v{major}.{minor}.{patch}. For example:

v1.0.0
v1.2.3-rc
v1.2.3-beta

To create tags:

$ git checkout master
$ git pull
$ git tag v1.0.0
$ git push --tags
Clone this wiki locally