The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

doc: Cleanup howto-release

+5 -3
+5 -3
doc/howto-release.md
··· 1 1 # How to release 2 2 3 + <!-- 4 + Copyright 2021, Collabora, Ltd. and the Monado contributors 5 + SPDX-License-Identifier: BSL-1.0 6 + --> 7 + 3 8 These instructions assumes that the version you are making is `21.0.0`. 4 9 5 10 ## Generate changelog ··· 16 21 git commit -m"doc: Update CHANGELOG.md" doc/CHANGELOG.md 17 22 git commit -m"doc: Remove old changelog fragments" doc/changes 18 23 ``` 19 - 20 24 21 25 ## Update versions 22 26 ··· 32 36 git commit -a -m"monado: Update version" 33 37 ``` 34 38 35 - 36 39 ## Tag the code 37 40 38 41 Do the tagging from git, do **not** do it from gitlab, also make sure to prefix ··· 41 44 ```sh 42 45 git tag v21.0.0 -m"v21.0.0" 43 46 ``` 44 - 45 47 46 48 ## Do gitlab release 47 49