From 450823b5f3bc404e70f8865997e7be4aaaa5105f Mon Sep 17 00:00:00 2001 From: Ethan Frey Date: Thu, 27 Jul 2017 22:11:17 -0400 Subject: [PATCH] Bump to 0.6.2 --- CHANGELOG.md | 12 ++++++++++++ version/version.go | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 16e4be1456..e61d8eb6a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 0.6.2 (July 27, 2017) + +IMPROVEMENTS: + +* auto-test all tutorials to detect breaking changes +* move deployment scripts from `/scripts` to `/publish` for clarity + +BUG FIXES: + +* `basecoin init` ensures the address in genesis.json is valid +* fix bug that certain addresses couldn't receive ibc packets + ## 0.6.1 (June 28, 2017) Make lots of small cli fixes that arose when people were using the tools for diff --git a/version/version.go b/version/version.go index 1e25edb4a6..1cd436e8c7 100644 --- a/version/version.go +++ b/version/version.go @@ -2,6 +2,6 @@ package version const Maj = "0" const Min = "6" -const Fix = "1" +const Fix = "2" -const Version = "0.6.1" +const Version = "0.6.2"