From 3135fca73b6c4f26a041af62628c2d99bf4cd986 Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Thu, 22 Mar 2018 19:19:16 -0400 Subject: [PATCH] changelog, dep, version --- CHANGELOG.md | 11 +++++++++++ Gopkg.lock | 6 +++--- Gopkg.toml | 2 +- version/version.go | 4 ++-- 4 files changed, 17 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c2fea153..e216f507f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 0.10.1 (March 22, 2018) + +FEATURES: + +- [types] ResponseCheckTx and ResponseDeliverTx are now the same. + +IMPROVEMENTS: + +- glide -> Godep +- remove pkg/errors + ## 0.10.0 (February 20, 2018) BREAKING CHANGES: diff --git a/Gopkg.lock b/Gopkg.lock index 71caaae61..4e95974f5 100644 --- a/Gopkg.lock +++ b/Gopkg.lock @@ -130,14 +130,14 @@ revision = "211f780988068502fe874c44dae530528ebd840f" [[projects]] - branch = "develop" + branch = "release/v0.8.0" name = "github.com/tendermint/tmlibs" packages = [ "common", "db", "log" ] - revision = "9b9a9e7f8c73f6d0ae8672438a271f32060eebcb" + revision = "0d86fdf522ca31745f33b9e71a17221bbee8a46f" [[projects]] name = "golang.org/x/net" @@ -204,6 +204,6 @@ [solve-meta] analyzer-name = "dep" analyzer-version = 1 - inputs-digest = "b334fca7ad79cda7d2248f0f67cc342dd3faa6125d44ba3a6936edb7140d1ef4" + inputs-digest = "f1671b129d43ecfb0b2369f8598f0b3be207ed1964a497949a49d11211ea21b3" solver-name = "gps-cdcl" solver-version = 1 diff --git a/Gopkg.toml b/Gopkg.toml index 643d12f05..168931a15 100644 --- a/Gopkg.toml +++ b/Gopkg.toml @@ -38,7 +38,7 @@ version = "1.2.1" [[constraint]] - branch = "develop" + branch = "release/v0.8.0" name = "github.com/tendermint/tmlibs" [[constraint]] diff --git a/version/version.go b/version/version.go index 4f7beb499..467cd9e43 100644 --- a/version/version.go +++ b/version/version.go @@ -4,6 +4,6 @@ package version const Maj = "0" const Min = "10" -const Fix = "0" +const Fix = "1" -const Version = "0.10.0" +const Version = "0.10.1"