summaryrefslogtreecommitdiff
path: root/version.go
AgeCommit message (Collapse)Author
2024-11-03Fix version stringxengineering
This contained an unwanted newline.
2024-10-23Apply go fmtxengineering
2024-10-23Inject version with embed instead of build flagsxengineering
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.
2024-05-08Rename gitDescribe to versionxengineering
This variable will be the only used representation for version information. It can trivially be used for an equality check. Further data as semantic versioning must be parsed from this string.
2024-05-01Make build-time version information mandatoryxengineering
This ensures that Ceres is never executed without Git version information. This removes the requirement to check for this on every use. To ensure the server does not work with an incompatible storage directory it is in every case needed to know the exact version of the running executable.
2024-04-30Add source version to executablexengineering
The output of `git describe --dirty --always` is passed as a string via Go build flags.