This commit is contained in:
Ethan Buchman 2017-03-23 18:52:59 -04:00
parent 30da6eebb0
commit e97c4b5d04
2 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,11 @@
# Changelog
## 0.3.1 (March 23, 2017)
IMPROVEMENTS:
- CLI returns exit code 1 and logs error before exiting
## 0.3.0 (March 23, 2017)
BREAKING CHANGES:

View File

@ -2,6 +2,6 @@ package version
const Maj = "0"
const Min = "3"
const Fix = "0"
const Fix = "1"
const Version = Maj + "." + Min + "." + Fix