Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-11-03 | Add `-version` suffix to VERSION.txtHEADmain | xengineering | |
This follows the process described in RELEASE.md to make sure the development versions are not mixed up with the released ones. | |||
2024-11-03 | Set version to 0.5.0v0.5.0 | xengineering | |
2024-10-23 | Inject version with embed instead of build flags | xengineering | |
The build flags made the basic build and debug calls quite complex and bound this strictly to Git repositories which is a problem if the source code is passed around as tar archive. Embedding this via Go's embed package and a VERSION.txt file makes this way easier. A simple `go build` command is sufficient to build ceres. To make sure the version string is extended by a `-devel` marker and that this marker is removed before a release a RELEASE.md file was added as a checklist for releases. |