diff --git a/CHANGELOG.md b/CHANGELOG.md index b1eec2f8e..92d6c112d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.9.2 (April 26, 2017) + +BUG FIXES: + +- Fix bug in `ResetPrivValidator` where we were using the global config and log (causing external consumers, eg. basecoin, to fail). + ## 0.9.1 (April 21, 2017) FEATURES: diff --git a/version/version.go b/version/version.go index cd1726092..b35a2daee 100644 --- a/version/version.go +++ b/version/version.go @@ -2,6 +2,6 @@ package version const Maj = "0" const Min = "9" -const Fix = "1" +const Fix = "2" -const Version = "0.9.1" +const Version = "0.9.2"