diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 181b7c6c..d54d60ea 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -46,8 +46,8 @@ jobs: strategy: matrix: consul-version: - - 1.18.1 - - 1.18.1+ent + - 1.20.2 + - 1.20.2+ent env: TEST_RESULTS_DIR: /tmp/test-results GOTESTSUM_VERSION: 1.8.2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 273a7225..df3cd749 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased +## 0.9.0 (Jan 15, 2025) BUG FIXES * Fix the issue where the service was accepting traffic even though it wasn't healthy. This fix updates the health check status for `consul-dataplane` container and takes into account the health of the service container as well. diff --git a/version/version.go b/version/version.go index 00f29c90..8e6d6312 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