1*4b9c6d91SCole Faust# Tagging Minijail releases 2*4b9c6d91SCole Faust 3*4b9c6d91SCole Faust* Choose a new-ish, stable-ish commit (i.e. not one that implements a completely 4*4b9c6d91SCole Faustnew feature). 5*4b9c6d91SCole Faust 6*4b9c6d91SCole Faust* Find the latest tag: 7*4b9c6d91SCole Faust`minijail$ git tag -l "linux-v*"` 8*4b9c6d91SCole Faust 9*4b9c6d91SCole Faust* Tag the commit with the next version number: 10*4b9c6d91SCole Faust`minijail$ git tag -a linux-v<N+1> <commit>` 11*4b9c6d91SCole Faust 12*4b9c6d91SCole Faust* Commit message: 13*4b9c6d91SCole Faust``` 14*4b9c6d91SCole FaustMinijail v<N+1>. 15*4b9c6d91SCole Faust 16*4b9c6d91SCole FaustNew in this release: 17*4b9c6d91SCole Faust* New feature (author@domain). 18*4b9c6d91SCole Faust* New feature 2 (author2@domain2). 19*4b9c6d91SCole Faust``` 20*4b9c6d91SCole Faust 21*4b9c6d91SCole Faust* Push the tag: 22*4b9c6d91SCole Faust`minijail$ git push aosp linux-v<N+1>` 23*4b9c6d91SCole Faust 24*4b9c6d91SCole FaustWe will tag a new release ~monthly at the beginning of the month. 25