From 3a9cb923916af30e49af7682932b0456a9068dcd Mon Sep 17 00:00:00 2001 From: Matthew Rothenberg Date: Tue, 10 Mar 2015 15:23:52 -0400 Subject: [PATCH] bump for 0.0.2 release --- CHANGELOG.md | 7 +++++-- commands/version/version.go | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5703ff0..aa138b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,11 @@ This project tries to adhere to [Semantic Versioning](http://semver.org/). ## Planned for the future - Switch to `gonut` instead of `godep` for more reliable builds. -## 0.0.2 - Unreleased +## 0.0.3 - Unreleased + +## 0.0.2 - 2015-03-10 ### Changed +Some preliminary work towards robust cross platform support: - Switched to using `status -z` instead of `status --porcelain` for obtaining work tree status. This adds a bit if parsing complexity, but should be the absolute most robust long term way to read things, and should enhance cross @@ -14,5 +17,5 @@ This project tries to adhere to [Semantic Versioning](http://semver.org/). understandable by most shells but significantly less likely to appear in a filename. -## 0.0.1 - 2014-03-04 +## 0.0.1 - 2015-03-04 First "ready for daily usage" internal alpha version. diff --git a/commands/version/version.go b/commands/version/version.go index f1066f5..201378c 100644 --- a/commands/version/version.go +++ b/commands/version/version.go @@ -10,7 +10,7 @@ import ( const NAME string = "scmpuff" // the version of this software -const VERSION string = "0.0.1" +const VERSION string = "0.0.2" var VersionCmd = &cobra.Command{ Use: "version",