From 9f44d66bb38ed49fd2ed77b97b642571b596dfba Mon Sep 17 00:00:00 2001 From: Alex Hong <9397363+hongalex@users.noreply.github.com> Date: Fri, 25 Sep 2020 12:28:30 -0700 Subject: [PATCH] chore(pubsub): release pubsub/v1.7.0 (#2922) --- internal/version/version.go | 2 +- pubsub/CHANGES.md | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/internal/version/version.go b/internal/version/version.go index 5be2c684043..b29e5b0e298 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 = "20200922" +const Repo = "20200925" // Go returns the Go runtime version. The returned string // has no whitespace. diff --git a/pubsub/CHANGES.md b/pubsub/CHANGES.md index e0230e2d325..66811f07451 100644 --- a/pubsub/CHANGES.md +++ b/pubsub/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## v1.7.0 + +- Add reactor options to pstest server. (#2916) + ## v1.6.2 - Make message.Modacks thread safe in pstest. (#2755)