This file documents the versioning process.
Versioning of this Git repository is organised as a simplified Git flow (or see here).
The main
branch is the only primary branch, and therefore also serves as the default branch for GitHub.
The version history is organised around releases. Each release is identified through a semver version number.
Releases are prepared in branches named release/<release version>
.
After preparation has finished, a Pull Request (PR) from the release branch into main
is created on GitHub.
That can e.g. be done by clicking the “New Pull Request” button on the branches page.
Such a PR serves as the trigger a code review for that release. That possibly leads to discussion conducted inside the PR page, and further work being committed to that release branch.
After enough reviewers have approved the PR, it can be merged into main
.
Merging the PR is done through “rebase + merge commit”, without fast-forwarding.
On GitHub, that corresponds to the “Create a merge commit” option next to the “Merge pull request” button, rather than the “Squash and merge”, or the “Rebase and merge” options.
On the commandline, it's:
$ git checkout main
$ git pull
$ git merge release/<release verion> --no-ff
That keeps the history very clean, and tidy - “linear”, with the incremental work done for each release clearly identifiable.
After merging the PR for a release into main
, the merge commit is tagged as <release version>
.
That can be done on the commandline as follows (assuming the main
branch is currently checked out):
$ git tag <release version>
$ git push --tags
After this, a release page can be made for that tag, using the GitHub releases overview.
After releasing, the European Commission's (EC) representative in the eHN should be notified of the release, so they can notify TSi to update the EU DCC Gateway.
It's advisable to rebase a release branch manually, and check it afterwards, as there's no guarantee that a conflict-free automatic rebase is syntactically, or semantically correct. On the commandline, that's (assuming the release branch is currently checked out):
$ git rebase main
Doing an interactive rebase by adding the flag --interactive
to the rebase
command usually makes this process more understandable, relatively free of pain, and you can clean the commits up a bit, if you like.
Tools such as Fork help even more.
After a manual rebase, the rebased branch has to be force-pushed, using:
$ git push --force
The release branch could be deleted after merging the PR, for the following reasons:
- A branch is essentially a label on a HEAD commit, and a tag fulfills the labelling function just as well.
- Having many branches can be confusing.
However, currently (essentially) all release branches are kept.
In case a particular release (that's not the latest release) needs to be fixed, a separate “fix release branch” is created.
Such a fix branch starts at the commit tagged for that particular release, and is named fix/<fix release version>
.
Typically, a fix release version increments the patch part of the semver version number.
A fix branch is never merged back into the main
branch.
A fix release branch is (considered to be) released by tagging the appropriate commit as <fix release version>
.