From a18ef06a070c725c399c81d1d73cdd0cae674e43 Mon Sep 17 00:00:00 2001 From: Genki Sugawara Date: Fri, 10 Jun 2016 14:21:11 +0900 Subject: [PATCH] Bump up version --- debian/changelog | 6 ++++++ homebrew/gcredstash.rb | 2 +- version.go | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 8ad7771..8537455 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +gcredstash (0.1.4) unstable; urgency=low + + * Support put from stdin. + + -- Genki Sugawara Fri, 10 Jun 2016 14:20:52 +0900 + gcredstash (0.1.3) unstable; urgency=low * Add -n option. diff --git a/homebrew/gcredstash.rb b/homebrew/gcredstash.rb index 1eb85c3..842d33a 100644 --- a/homebrew/gcredstash.rb +++ b/homebrew/gcredstash.rb @@ -1,7 +1,7 @@ require 'formula' class Gcredstash < Formula - VERSION = '0.1.3' + VERSION = '0.1.4' homepage 'https://github.com/winebarrel/gcredstash' url "https://github.com/winebarrel/gcredstash/releases/download/v#{VERSION}/gcredstash-v#{VERSION}-darwin-amd64.gz" diff --git a/version.go b/version.go index 814e963..0b649cf 100644 --- a/version.go +++ b/version.go @@ -1,7 +1,7 @@ package main const Name string = "gcredstash" -const Version string = "0.1.3" +const Version string = "0.1.4" // GitCommit describes latest commit hash. // This value is extracted by git command when building.