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