You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
530 B
25 lines
530 B
4 months ago
|
# Tagging Minijail releases
|
||
|
|
||
|
* Choose a new-ish, stable-ish commit (i.e. not one that implements a completely
|
||
|
new feature).
|
||
|
|
||
|
* Find the latest tag:
|
||
|
`minijail$ git tag -l "linux-v*"`
|
||
|
|
||
|
* Tag the commit with the next version number:
|
||
|
`minijail$ git tag -a linux-v<N+1> <commit>`
|
||
|
|
||
|
* Commit message:
|
||
|
```
|
||
|
Minijail v<N+1>.
|
||
|
|
||
|
New in this release:
|
||
|
* New feature (author@domain).
|
||
|
* New feature 2 (author2@domain2).
|
||
|
```
|
||
|
|
||
|
* Push the tag:
|
||
|
`minijail$ git push aosp linux-v<N+1>`
|
||
|
|
||
|
We will tag a new release ~monthly at the beginning of the month.
|