From 11bdfa479636557f9ffa4f6efa315bf7fa3256c3 Mon Sep 17 00:00:00 2001 From: andystanton Date: Sat, 23 Apr 2016 23:25:14 +0100 Subject: [PATCH] Bump versions for release --- .goxc.json | 2 +- CHANGELOG.md | 4 ++++ cli/cli.go | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.goxc.json b/.goxc.json index 0aff7a3..2c376b0 100644 --- a/.goxc.json +++ b/.goxc.json @@ -1,6 +1,6 @@ { "BuildConstraints": "windows,linux,darwin,openbsd", - "PackageVersion": "1.0.4", + "PackageVersion": "1.0.5", "TaskSettings": { "bintray": { "downloadspage": "bintray.md", diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a74ef3..75cd9d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased][unreleased] +## [1.0.5] - 2016-04-23 +### Fixed +- Receive input from STDIN correctly and display STDOUT/STDERR messages only once. + ## [1.0.4] - 2016-04-23 ### Added - Added ability to read from STDIN either manually or via pipe. diff --git a/cli/cli.go b/cli/cli.go index 058c4a4..3b9eeff 100644 --- a/cli/cli.go +++ b/cli/cli.go @@ -177,5 +177,5 @@ func DisplayHelp(filename string) { // DisplayVersion prints the version information for the program. func DisplayVersion(filename string) { - fmt.Printf("%s 1.0.5-SNAPSHOT\n", filename) + fmt.Printf("%s 1.0.5\n", filename) }