From 3f2988d48e253a8e290b8c0e821284eead1131a0 Mon Sep 17 00:00:00 2001 From: Chris Cotter Date: Thu, 18 Jun 2020 16:01:40 -0400 Subject: [PATCH] storage: release v1.10.0 (#2485) --- internal/version/version.go | 2 +- storage/CHANGES.md | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/internal/version/version.go b/internal/version/version.go index f2d6e583f32..7664a1e5ac0 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 = "20200612" +const Repo = "20200618" // Go returns the Go runtime version. The returned string // has no whitespace. diff --git a/storage/CHANGES.md b/storage/CHANGES.md index 107c3d22c6b..f6d57be5085 100644 --- a/storage/CHANGES.md +++ b/storage/CHANGES.md @@ -1,5 +1,11 @@ # Changes +## v1.10.0 +- Bump dependency on google.golang.org/api to capture changes to retry logic + which will make retries on writes more resilient. +- Improve documentation for Writer.ChunkSize. +- Fix a bug in lifecycle to allow callers to clear lifecycle rules on a bucket. + ## v1.9.0 - Add retry for transient network errors on most operations (with the exception of writes).