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"