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).