From 2af32d6665e78159eeb8880809b020b18bd48abd Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Mon, 11 Dec 2017 15:05:56 -0500 Subject: [PATCH] changelog and version bump --- CHANGELOG.md | 2 +- version/version.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d19518c20..3d5d377da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,7 +27,7 @@ BUG FIXES: - Graceful handling/recovery for apps that have non-determinism or fail to halt - Graceful handling/recovery for violations of safety, or liveness -## 0.14.0 (TBD) +## 0.14.0 (December 11, 2017) BREAKING CHANGES: - consensus/wal: removed separator diff --git a/version/version.go b/version/version.go index 54081b356..baec0b343 100644 --- a/version/version.go +++ b/version/version.go @@ -1,13 +1,13 @@ package version const Maj = "0" -const Min = "13" +const Min = "14" const Fix = "0" var ( // Version is the current version of Tendermint // Must be a string because scripts like dist.sh read this file. - Version = "0.13.0" + Version = "0.14.0" // GitCommit is the current HEAD set using ldflags. GitCommit string