From 666c22d07b26f425618ca820eed69bb4bd1e052f Mon Sep 17 00:00:00 2001 From: Prashant Varanasi Date: Thu, 19 Jan 2017 13:29:12 -0800 Subject: [PATCH] Bump version to 1.2.3 and update changelog --- CHANGELOG.md | 12 ++++++++++++ version.go | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c394de8..d4d552ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ Changelog ========= +# v1.2.3 + +* Improve error messages when an argument reader is closed without + reading the EOF. (#567) +* thrift: Fix an issue where we return `nil` if we expected a Thrift exception + but none was found (e.g., exception is from the future). (#566) +* Fix ListenIP selecting docker interfaces over physical networks. (#565) +* Fix for error when a Thrift payload has completed decoding and attempts + to close the argument reader without waiting till EOF. (#564) +* thrift-gen: Fix "namespace go" being ignored even though the Apache thrift + generated code was respecting it. (#559) + # v1.2.2 * Add a unique channel ID for introspection (#548) diff --git a/version.go b/version.go index 9b63fd4f..5f3d750a 100644 --- a/version.go +++ b/version.go @@ -23,4 +23,4 @@ package tchannel // VersionInfo identifies the version of the TChannel library. // Due to lack of proper package management, this version string will // be maintained manually. -const VersionInfo = "1.2.2" +const VersionInfo = "1.2.3"