Release 1.54.2
-
Set the milestone on this issue - Decide on the version number by reference to
the Versioning
- Typically if you want to release code from current
masterbranch you will updateMINORversion, e.g.1.12.0->1.13.0. In that case you don't need to create stable branch - If you want to backport some bug fix or security fix you will need to create a stable branch
X-Y-stableon the security project. You will need maintainer access to create the stable branch.
- Typically if you want to release code from current
-
Create an MR for gitlab-pages project. You can use this MR as an example. -
Update VERSION, and push your branch -
Update CHANGELOGby runningGITLAB_PRIVATE_TOKEN= make changelog, note that you need to create a personal access token -
Assign to reviewer
-
-
Once gitlab-pagesis merged create a signed+annotated tag pointing to the merge commit on the stable branch In case ofmasterbranch:In case ofgit fetch origin master git fetch dev master git tag -a -s -m "Release v1.0.0" v1.0.0 origin/masterstablebranch:git fetch origin 1-0-stable git fetch dev 1-0-stable git tag -a -s -m "Release v1.0.0" v1.0.0 origin/1-0-stable -
Verify that you created tag properly: it should include something like:git show v1.0.0-
(tag: v1.0.0, origin/master, dev/master, master)formaster -
(tag: v1.0.1, origin/1-0-stable, dev/1-0-stable, 1-0-stable)forstablebranch
-
-
Push this tag to origin(Skip this for security release!) git push origin v1.0.0 -
Wait for tag to be mirrored to devor push it:git push dev v1.0.0 -
Create an MR for gitlab project. You can use this MR as an example. -
Update GITLAB_PAGES_VERSION -
Added Changelog: addedfooter to your commit -
Assign to a reviewer
-
Edited by Vishal Tak