diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ac10ee..cb1ddf0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Core -### Core v16.10.0 > v16.11.0 +### Core v16.10.0 > v16.10.1 - Fix use of Let's Encrypt production CA - Add email address in TLS config for Let's Encrypt diff --git a/app/version.go b/app/version.go index 40c3f34..4166053 100644 --- a/app/version.go +++ b/app/version.go @@ -29,8 +29,8 @@ func (v versionInfo) MinorString() string { // Version of the app var Version = versionInfo{ Major: 16, - Minor: 11, - Patch: 0, + Minor: 10, + Patch: 1, } // Commit is the git commit the app is build from. It should be filled in during compilation