-
Notifications
You must be signed in to change notification settings - Fork 33
Suggestion for semver tag and release convention to use v1.1.1
#14
Comments
So we keep the
Does GitHub support overwriting tags? So the Docker versioning could apply to GH aswell. You could specify only e.g. This maybe relates to this issue aswell: Can we add some script to automatically update the |
Yes you can overwrite the git tags to match that versioning scheme, but I think the best process is to treat tags as immutable, and just re-tag the same ones as
I think it'd could make sense to use the docker versioning scheme and force tags for minor/patch updates:
|
Also i think while it's in We can add that to the |
This is a minor nitpick but with semantic versioning in an SCM like git the standard advice says to name it
v${major}.${minor}.${patch}
Ideally we could name the github releases and tag are:
v1.1.0
v1.1.1
In terms of release branches I think its fine to call it something like:
releases/v1.1
v1.1.0
andv1.1.1
are tagged from this release branch (and hotfixes can be cherry-picked on to this release branch)You also could do a 'just-in-time' release branch model where the tag is done on
master
and only when you need to specifically hotfix do you create the release branch:For docker image tags I think the convention for semver is to have the following combinations of tags:
I think the ideal situation is users depend on a specific major version e.g.
cedrickrin/golang-action:2
and get the benefit of passively upgrading for bug/security fixes in any minor/patch versions while depending on the major version not having any backwards incompatible changes.The text was updated successfully, but these errors were encountered: