From 2900168e018a66513d07b232c11ac6fe81f820f6 Mon Sep 17 00:00:00 2001 From: Sean Malloy Date: Mon, 6 Jan 2020 13:33:06 -0600 Subject: [PATCH] chore: release v0.1.1 --- CHANGELOG.md | 7 ++++++- pkg/version/version.go | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f032b2c..2f0b643 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,14 @@ -## v0.1.1 (Unreleased) +## v0.1.1 (January 6, 2020) FEATURES: +* None CHANGES: +* Update to Go 1.13 and switch to Go Modules [GH-16](https://github.com/KohlsTechnology/git2consul-go/pull/16) +* Add git branch, git commit, Go version, and build date to version output [GH-19](https://github.com/KohlsTechnology/git2consul-go/pull/19) +* Enable gitter for this repo [GH-23](https://github.com/KohlsTechnology/git2consul-go/pull/23) BUG FIXES: +* None ## v0.1.0 # diff --git a/pkg/version/version.go b/pkg/version/version.go index ea39577..e0b5f62 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -26,7 +26,7 @@ var ( Branch string BuildDate string GitSHA1 string - Version = "v0.1.1-dev" + Version = "v0.1.1" ) // Print writes application version details to standard output.