diff options
| author | Teddy Wing | 2017-07-08 22:58:02 +0200 | 
|---|---|---|
| committer | Teddy Wing | 2017-07-08 22:58:02 +0200 | 
| commit | 54c921d24cb5759cc63f4781b8dc96fa389e5ef7 (patch) | |
| tree | 7c3abeb07ae85faaea354d5a7ffa9aa1eaad7db3 | |
| parent | 3a46af2389a54a9592e8dabb075e1cfed5562ce0 (diff) | |
| download | timetasker-0.1.1.tar.bz2 | |
Increase version v0.1.0 -> v0.1.1v0.1.1
* Increment version number
* Update CHANGELOG
* Change `VERSION` variable in main.go to a constant because this makes
  more sense
| -rw-r--r-- | CHANGELOG | 4 | ||||
| -rw-r--r-- | main.go | 2 | ||||
| -rw-r--r-- | release.sh | 2 | 
3 files changed, 6 insertions, 2 deletions
| @@ -1,5 +1,9 @@  CHANGELOG  ========= +v0.1.1 (2017-07-08): +	+ Add Bash completion +	* Update release script +  v0.1.0 (2017-06-04):  	Initial public release. @@ -10,7 +10,7 @@ import (  	"gopkg.in/alecthomas/kingpin.v2"  ) -var VERSION string = "0.1.0" +const VERSION string = "0.1.1"  var config Config @@ -1,6 +1,6 @@  #!/bin/sh -VERSION=0.1.0 +VERSION=0.1.1  mkdir -p dist | 
