From 1e109aa597bc5fc8cb11cacd59b311b4ec8cb564 Mon Sep 17 00:00:00 2001 From: hashicorp-ci Date: Thu, 21 May 2020 18:43:00 +0000 Subject: [PATCH] Release v0.0.2 --- CHANGELOG.md | 2 +- version/version.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a294b1bf..39a6d674 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## UNRELEASED +## 0.0.2 (May 21, 2020) __BACKWARDS INCOMPATIBILITIES:__ * agent: configuration `scan_interval` renamed to `default_evaluation_interval` [[GH-114](https://github.com/hashicorp/nomad-autoscaler/pull/114)] diff --git a/version/version.go b/version/version.go index 7d28bbeb..b778f3c1 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 = "0.0.1" + Version = "0.0.2" // 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