diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cd4689..08dd944 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Development +# Version 1.0.1 - Do not ignore `storage-path` configuration value - Move `server.storage-path` to `storage-path` - Explicitly close database on shutdown, with delay to allow completion diff --git a/main.go b/main.go index 7044ac9..56ea5e9 100644 --- a/main.go +++ b/main.go @@ -75,10 +75,10 @@ import ( ) // ReleaseVersion is the release version for the code. -var ReleaseVersion = "1.0.0" +var ReleaseVersion = "1.0.1" // BuildVersion is the build version for the code. -var BuildVersion = uint64(3) +var BuildVersion = uint64(4) func main() { ctx, cancel := context.WithCancel(context.Background())