Bump version

This commit is contained in:
Jim McDonald 2020-10-20 07:57:36 +01:00
parent c6adf2c7e5
commit fb95aadd11
No known key found for this signature in database
GPG Key ID: 89CEB61B2AD2A5E7
2 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,4 @@
Development
0.6.2
- do not attempt to aggregate a failed attestation
- error appropriately when misconfigured
- avoid crash if accountmanager not configured

View File

@ -67,6 +67,9 @@ import (
standardmajordomo "github.com/wealdtech/go-majordomo/standard"
)
// ReleaseVersion is the release version for the code.
var ReleaseVersion = "0.6.2"
func main() {
os.Exit(main2())
}
@ -92,7 +95,7 @@ func main2() int {
}
logModules()
log.Info().Str("version", "v0.6.1").Msg("Starting vouch")
log.Info().Str("version", ReleaseVersion).Msg("Starting vouch")
if err := initProfiling(); err != nil {
log.Error().Err(err).Msg("Failed to initialise profiling")