diff --git a/CHANGELOG.md b/CHANGELOG.md index d864e99123c9..69788ff4fd3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## UNRELEASED +## 1.6.7 (July 30, 2020) BUG FIXES: diff --git a/version/version.go b/version/version.go index cec1d3597513..e7d4e8320e5a 100644 --- a/version/version.go +++ b/version/version.go @@ -15,12 +15,12 @@ var ( // // Version must conform to the format expected by github.com/hashicorp/go-version // for tests to work. - Version = "1.6.6" + Version = "1.6.7" // A pre-release marker for the version. If this is "" (empty string) // then it means that it is a final release. Otherwise, this is a pre-release // such as "dev" (in development), "beta", "rc1", etc. - VersionPrerelease = "dev" + VersionPrerelease = "" ) // GetHumanVersion composes the parts of the version in a way that's suitable diff --git a/website/config.rb b/website/config.rb index 451e90e4bd75..030f51b3de7e 100644 --- a/website/config.rb +++ b/website/config.rb @@ -2,7 +2,7 @@ activate :hashicorp do |h| h.name = "consul" - h.version = "1.6.6" + h.version = "1.6.7" h.github_slug = "hashicorp/consul" end