From 37e7cb2ac138cf85992e743b1383d9486bc09899 Mon Sep 17 00:00:00 2001 From: Krishna Gupta Date: Tue, 12 Jul 2022 18:00:14 +0530 Subject: [PATCH] Preparing release v1.32.0 --- CHANGELOG.md | 5 +++++ go.mod | 3 +-- version.go | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f94149d0..28cf4270 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Changelog ========= +## [1.32.0] - 2022-07-12 +### Changed + * Add TLS option in testutils.NewServerChannel (#882) + ## [1.31.0] - 2022-05-04 ### Changed * thrift-gen going to use vendored apache-thrift code. Currently vendored apache-thrift pinned to b2a4d4ae21c789b689dd162deb819665567f481c. @@ -347,6 +351,7 @@ Changelog * Thrift support, including includes. [//]: # (Version Links) +[1.32.0]: https://github.com/uber/tchannel-go/compare/v1.31.0...v1.32.0 [1.31.0]: https://github.com/uber/tchannel-go/compare/v1.22.3...v1.31.0 [1.22.3]: https://github.com/uber/tchannel-go/compare/v1.22.2...v1.22.3 [1.22.1]: https://github.com/uber/tchannel-go/compare/v1.22.0...v1.22.1 diff --git a/go.mod b/go.mod index a97956a6..231d718c 100644 --- a/go.mod +++ b/go.mod @@ -23,7 +23,6 @@ require ( ) require ( - github.com/HdrHistogram/hdrhistogram-go v0.9.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/kr/text v0.2.0 // indirect github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect @@ -31,4 +30,4 @@ require ( github.com/stretchr/objx v0.3.0 // indirect github.com/uber/jaeger-lib v2.4.1+incompatible // indirect gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect -) \ No newline at end of file +) diff --git a/version.go b/version.go index 660ae967..84af7291 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.31.0-dev" +const VersionInfo = "1.32.0"