diff --git a/CHANGELOG.md b/CHANGELOG.md index 8205d23a2bc1..2d019cc9de77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## UNRELEASED +## 1.7.7 (August 12, 2020) BUG FIXES: * [backport/1.7.x] catalog: fixed a bug where nodes, services, and checks would not be restored with the correct Create/ModifyIndex when restoring from a snapshot [[GH-8485](https://github.com/hashicorp/consul/pull/8485)] diff --git a/version/version.go b/version/version.go index b72a0cca94ca..7dc6c3582b23 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.7.4" + Version = "1.7.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 a4c252593d1f..57587cbef786 100644 --- a/website/config.rb +++ b/website/config.rb @@ -2,7 +2,7 @@ activate :hashicorp do |h| h.name = "consul" - h.version = "1.7.4" + h.version = "1.7.7" h.github_slug = "hashicorp/consul" end