diff --git a/.github/workflows/bin-ci.yml b/.github/workflows/bin-ci.yml index 999ac115..2816005d 100644 --- a/.github/workflows/bin-ci.yml +++ b/.github/workflows/bin-ci.yml @@ -53,8 +53,8 @@ jobs: strategy: matrix: consul-version: - - 1.17.0-rc1 - - 1.17.0-rc1+ent + - 1.17.1 + - 1.17.1+ent env: TEST_RESULTS_DIR: /tmp/test-results GOTESTSUM_VERSION: 1.8.2 diff --git a/CHANGELOG.md b/CHANGELOG.md index f5d522b4..f2fff84d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased +## 0.7.1 (Dec 18, 2023) BUG FIXES * Fixes a bug which prevented graceful shutdown of the Consul dataplane container. [[GH-200](https://github.com/hashicorp/consul-ecs/pull/200)] diff --git a/version/version.go b/version/version.go index c0d7ce13..6c907130 100644 --- a/version/version.go +++ b/version/version.go @@ -21,7 +21,7 @@ var ( // 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