diff --git a/CHANGELOG.md b/CHANGELOG.md index bc724bd..5d36fd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## v0.7.0 (Dec 09, 2022) + +IMPROVEMENTS: +* Enable ESM single instance to monitor all namespaces [[GH-191](https://github.com/hashicorp/consul-esm/pull/191), [GH-143](https://github.com/hashicorp/consul-esm/issues/143)] +* Add support for pprof endpoints [[GH-189](https://github.com/hashicorp/consul-esm/pull/189)] + +BUG FIXES: +* Fix deadlock on checkrunner [[GH-193](https://github.com/hashicorp/consul-esm/pull/193), [GH-192](https://github.com/hashicorp/consul-esm/issues/192)] +* Fix USER setting in docker config [[GH-176](https://github.com/hashicorp/consul-esm/pull/176)] + ## v0.6.2 (Oct 12, 2022) BUG FIXES: diff --git a/version/version.go b/version/version.go index ac2159b..3aac07b 100644 --- a/version/version.go +++ b/version/version.go @@ -22,7 +22,7 @@ var ( // Version is the main version number that is being run at the moment. // Note: our current release process does a pattern match on this variable. - Version = "0.6.2" + Version = "0.7.0" // VersionPrerelease is a pre-release marker for the version. If this is "" // (empty string) then it means that it is a final release. Otherwise, this