From 9ec299a6e40b4a95bee52e38f015ea442aee765d Mon Sep 17 00:00:00 2001 From: Alex Hong Date: Wed, 22 Jul 2020 10:02:13 -0700 Subject: [PATCH 1/2] chore: release pubsub/v1.6.0 --- internal/version/version.go | 2 +- pubsub/CHANGES.md | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/internal/version/version.go b/internal/version/version.go index 54d3ee0abceb..10b0e8c6baf2 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -26,7 +26,7 @@ import ( // Repo is the current version of the client libraries in this // repo. It should be a date in YYYYMMDD format. -const Repo = "20200721" +const Repo = "20200722" // Go returns the Go runtime version. The returned string // has no whitespace. diff --git a/pubsub/CHANGES.md b/pubsub/CHANGES.md index aab62a4d200e..e10da0419ac2 100644 --- a/pubsub/CHANGES.md +++ b/pubsub/CHANGES.md @@ -1,5 +1,12 @@ # Changes +## v1.6.0 + +- Fix issue where subscriber streams were limited because it was using a single grpc conn (#2624). + - As a side effect, publisher and subscriber grpc conns are no longer shared. +- Add fake time function in pstest (#2558). +- Add support for server side flow control. + ## v1.5.0 - Add support for subscription detachment. From 2cb45f0294aa3cddbbef9b78f44e3192769498a7 Mon Sep 17 00:00:00 2001 From: Alex Hong Date: Wed, 22 Jul 2020 10:05:33 -0700 Subject: [PATCH 2/2] remove issue ref in CHANGES --- pubsub/CHANGES.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pubsub/CHANGES.md b/pubsub/CHANGES.md index e10da0419ac2..c130bae06c73 100644 --- a/pubsub/CHANGES.md +++ b/pubsub/CHANGES.md @@ -2,9 +2,9 @@ ## v1.6.0 -- Fix issue where subscriber streams were limited because it was using a single grpc conn (#2624). +- Fix issue where subscriber streams were limited because it was using a single grpc conn. - As a side effect, publisher and subscriber grpc conns are no longer shared. -- Add fake time function in pstest (#2558). +- Add fake time function in pstest. - Add support for server side flow control. ## v1.5.0