Release 0.16.2-gitlab.43
For visioning we use X.Y.Z-gitlab.G pattern, where:
-
X.Y.Zis directly taken from the upstream version. For now we add all our changes on top of0.16.2which is the last stable tag of Docker Machine. -
Gis the incremental number increased for each of our releases.
Release 0.16.2-gitlab.43
-
git checkout main && git pull - Increment the value of {{G}} by checking the value defined in https://gitlab.com/gitlab-org/ci-cd/docker-machine/-/blob/main/version/version.go#L9.
-
Update version/version.go to
0.16.2-gitlab.{{G}}. -
Add file
git add version/version.go -
Commit
git commit -m "Bump version to 0.16.2-gitlab.{{G}}" -
Create git tag
git tag -s v0.16.2-gitlab.{{G}} -m "Version 0.16.2-gitlab.{{G}}" -
Push tag
git push origin v0.16.2-gitlab.{{G}} -
Push to main
git push origin main
Edited by Vishal Tak