From 76a8e34d640337a301b6ae0795c15f7ce8fc0c3c Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Wed, 26 Apr 2017 01:38:18 -0400 Subject: [PATCH] changelog and version bump --- CHANGELOG.md | 6 ++++++ version/version.go | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 677cebb4e3..035d464cfd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.4.1 (April 26, 2017) + +BUG FIXES: + +- Fix bug in `basecoin unsafe_reset_X` where the `priv_validator.json` was not being reset + ## 0.4.0 (April 21, 2017) BREAKING CHANGES: diff --git a/version/version.go b/version/version.go index ae549d0832..3822823050 100644 --- a/version/version.go +++ b/version/version.go @@ -2,6 +2,6 @@ package version const Maj = "0" const Min = "4" -const Fix = "0" +const Fix = "1" -const Version = Maj + "." + Min + "." + Fix +const Version = "0.4.1"