-
Notifications
You must be signed in to change notification settings - Fork 8
Creating a release
Wiki Pusher edited this page Nov 16, 2025
·
1 revision
- General:
major.minor.patch(semver) - Pre-releases (release candidates) must end with
~XXwhereXXis the number of the pre-release- So, before version
7.1.1is released, there may be versions7.1.1~01,7.1.1~02, and so on
- So, before version
- Releases don't have a suffix.
- So, once version
7.1.1is ready, it is published as7.1.1
- So, once version
- This concept ensures that stable releases are always evaluated as a higher version number than pre-releases.
- Update the changelog file
- commit all changes
- Do a git push:
git push - Create a git tag in the format v+VERSION (eg. v7.0.0):
git tag vVERSION - Push tags:
git push --tags
- Locally:
git tag -d vVERSION - Remotely:
git push --delete origin vVERSION