Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 1.13 KB

RELEASING.md

File metadata and controls

26 lines (17 loc) · 1.13 KB

Steps to Release Grafeas

We're following semantic versioning approach to releases in Grafeas server. See versioning document for the rationale of API, server, and client versioning.

Create a Release PR

Modify the Grafeas version values for the containers in these locations:

Assemble all the meaningful changes since the last release into the CHANGELOG.md file.

Tag the release

Make sure your fork of the repository is updated. Assuming git remote shows the origin (the fork) and upstream (the main repository), do:

git pull origin master
git pull upstream master
git tag -am "grafeas-vX.Y.Z release" vX.Y.Z
git push upstream --tags

NOTE: the last command will not work if you set git remote set-url --push upstream no_push as described in DEVELOPMENT.md. You will need to re-enable the push for this to work, so proceed with caution.

You can find the releases in GitHub, e.g. v0.1.0.