From 7e59bb5e6cc1ef57f2643914b690869c586d3c18 Mon Sep 17 00:00:00 2001 From: ckl Date: Thu, 8 Jul 2021 16:53:47 -0700 Subject: [PATCH] Update missed version references to 1.6.0. PiperOrigin-RevId: 383742198 (cherry picked from commit 1b5ddd77727c8fe7e973dce38465296e02768fb5) --- docs/JAVA-HOWTO.md | 10 +++++----- docs/TINKEY.md | 2 +- go/tink/version.go | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/JAVA-HOWTO.md b/docs/JAVA-HOWTO.md index c6b9e243fc..4e0eb39ae4 100644 --- a/docs/JAVA-HOWTO.md +++ b/docs/JAVA-HOWTO.md @@ -81,7 +81,7 @@ use AWS KMS, one should also add dependency on `tink-awskms`, and similarly com.google.crypto.tink tink-awskms - 1.5.0 + 1.6.0 ``` @@ -91,7 +91,7 @@ use AWS KMS, one should also add dependency on `tink-awskms`, and similarly com.google.crypto.tink tink-gcpkms - 1.5.0 + 1.6.0 ``` @@ -105,7 +105,7 @@ following configuration: ``` dependencies { - implementation 'com.google.crypto.tink:tink-android:1.5.0' + implementation 'com.google.crypto.tink:tink-android:1.6.0' } ``` @@ -125,10 +125,10 @@ dependencies { ## API documentation * Java: - * [1.5.0](https://google.github.io/tink/javadoc/tink/1.5.0) + * [1.6.0](https://google.github.io/tink/javadoc/tink/1.6.0) * [HEAD-SNAPSHOT](https://google.github.io/tink/javadoc/tink/HEAD-SNAPSHOT) * Android: - * [1.5.0](https://google.github.io/tink/javadoc/tink-android/1.5.0) + * [1.6.0](https://google.github.io/tink/javadoc/tink-android/1.6.0) * [HEAD-SNAPSHOT](https://google.github.io/tink/javadoc/tink-android/HEAD-SNAPSHOT) ## Important warnings diff --git a/docs/TINKEY.md b/docs/TINKEY.md index 159efdc63a..10e65fb039 100644 --- a/docs/TINKEY.md +++ b/docs/TINKEY.md @@ -10,7 +10,7 @@ Tinkey requires Java 8 or later to run. ## Install from prebuilt binaries Download the latest version of Tinkey from -https://storage.googleapis.com/tinkey/tinkey-1.5.0.tar.gz. This version should +https://storage.googleapis.com/tinkey/tinkey-1.6.0.tar.gz. This version should work well on Linux, macOS and Windows. ## Install with Homebrew diff --git a/go/tink/version.go b/go/tink/version.go index 9d662e5b0b..536ba803df 100644 --- a/go/tink/version.go +++ b/go/tink/version.go @@ -18,5 +18,5 @@ package tink const ( // Version is the current version of Tink. - Version = "1.5.0" + Version = "1.6.0" )