From 037dba28b13eea3fe049f2cf1d5c13582436164c Mon Sep 17 00:00:00 2001 From: hashicorp-ci Date: Thu, 9 Jul 2020 13:58:40 +0000 Subject: [PATCH] Release v0.1.0 --- CHANGELOG.md | 2 +- version/version.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93d44835..ca6e9d91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## UNRELEASED +## 0.1.0 (July 09, 2020) __BACKWARDS INCOMPATIBILITIES:__ * policy: allow multiple `check`s in a policy [[GH-176](https://github.com/hashicorp/nomad-autoscaler/pull/176)] diff --git a/version/version.go b/version/version.go index 630d1117..c4b1b79a 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.3" + Version = "0.1.0" // 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