Skip to content
This repository has been archived by the owner on Apr 17, 2024. It is now read-only.

Commit

Permalink
Version bump to 1.6.1.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 384286927
(cherry picked from commit 99d3796)
  • Loading branch information
chuckx committed Jul 12, 2021
1 parent 983c21e commit a7b2305
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 32 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -48,8 +48,8 @@ presented at [Real World Crypto 2019](https://rwc.iacr.org/2019/).
[Java/Android](docs/JAVA-HOWTO.md), [C++](docs/CPP-HOWTO.md),
[Obj-C](docs/OBJC-HOWTO.md), [Go](docs/GOLANG-HOWTO.md), and
[Python](docs/PYTHON-HOWTO.md) are field tested and ready for production. The
latest version is [1.6.0](https://github.com/google/tink/releases/tag/v1.6.0),
released on 2021-05-17.
latest version is [1.6.1](https://github.com/google/tink/releases/tag/v1.6.1),
released on 2021-07-12.

Javascript/Typescript is in an alpha state and should only be used for testing.

Expand Down Expand Up @@ -83,15 +83,15 @@ go get github.com/google/tink/go/...
<dependency>
<groupId>com.google.crypto.tink</groupId>
<artifactId>tink</artifactId>
<version>1.6.0</version>
<version>1.6.1</version>
</dependency>
```

* Android

```
dependencies {
implementation 'com.google.crypto.tink:tink-android:1.6.0'
implementation 'com.google.crypto.tink:tink-android:1.6.1'
}
```

Expand All @@ -100,7 +100,7 @@ dependencies {
```sh
cd /path/to/your/Xcode project/
pod init
pod 'Tink', '1.6.0'
pod 'Tink', '1.6.1'
pod install
```

Expand Down
8 changes: 4 additions & 4 deletions apps/paymentmethodtoken/README.md
Expand Up @@ -3,9 +3,9 @@
## Latest release

The most recent release is
[1.6.0](https://github.com/google/tink/releases/tag/v1.6.0), released
2021-05-17. API docs can be found
[here](https://google.github.io/tink/javadoc/apps-paymentmethodtoken/1.6.0).
[1.6.1](https://github.com/google/tink/releases/tag/v1.6.1), released
2021-07-12. API docs can be found
[here](https://google.github.io/tink/javadoc/apps-paymentmethodtoken/1.6.1).

The Maven group ID is `com.google.crypto.tink`, and the artifact ID is
`apps-paymentmethodtoken`.
Expand All @@ -16,7 +16,7 @@ To add a dependency using Maven:
<dependency>
<groupId>com.google.crypto.tink</groupId>
<artifactId>apps-paymentmethodtoken</artifactId>
<version>1.6.0</version>
<version>1.6.1</version>
</dependency>
```

Expand Down
8 changes: 4 additions & 4 deletions apps/rewardedads/README.md
Expand Up @@ -6,9 +6,9 @@ AdMob Rewarded Ads.
## Latest Release

The most recent release is
[1.6.0](https://github.com/google/tink/releases/tag/v1.6.0), released
2021-05-17. API docs can be found
[here](https://google.github.io/tink/javadoc/apps-rewardedads/1.6.0).
[1.6.1](https://github.com/google/tink/releases/tag/v1.6.1), released
2021-07-12. API docs can be found
[here](https://google.github.io/tink/javadoc/apps-rewardedads/1.6.1).

The Maven group ID is `com.google.crypto.tink`, and the artifact ID is
`apps-rewardedads`.
Expand All @@ -19,7 +19,7 @@ To add a dependency using Maven:
<dependency>
<groupId>com.google.crypto.tink</groupId>
<artifactId>apps-rewardedads</artifactId>
<version>1.6.0</version>
<version>1.6.1</version>
</dependency>
```

Expand Down
10 changes: 5 additions & 5 deletions apps/webpush/README.md
Expand Up @@ -4,9 +4,9 @@ This Tink app is an implementation of [RFC 8291 - Message Encryption for Web
Push](https://tools.ietf.org/html/rfc8291).

The most recent release is
[1.6.0](https://github.com/google/tink/releases/tag/v1.6.0), released
2021-05-17. API docs can be found
[here](https://google.github.io/tink/javadoc/apps-webpush/1.6.0).
[1.6.1](https://github.com/google/tink/releases/tag/v1.6.1), released
2021-07-12. API docs can be found
[here](https://google.github.io/tink/javadoc/apps-webpush/1.6.1).

## Installation

Expand All @@ -16,15 +16,15 @@ To add a dependency using Maven:
<dependency>
<groupId>com.google.crypto.tink</groupId>
<artifactId>apps-webpush</artifactId>
<version>1.6.0</version>
<version>1.6.1</version>
</dependency>
```

To add a dependency using Gradle:

```
dependencies {
implementation 'com.google.crypto.tink:apps-webpush:1.6.0'
implementation 'com.google.crypto.tink:apps-webpush:1.6.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion cc/version_script.lds
@@ -1,4 +1,4 @@
VERS_1.6.0 {
VERS_1.6.1 {
global:
*tink*;
*absl*;
Expand Down
16 changes: 8 additions & 8 deletions docs/JAVA-HOWTO.md
Expand Up @@ -9,8 +9,8 @@ hacking guide](JAVA-HACKING.md).
## Setup instructions

The most recent release is
[1.6.0](https://github.com/google/tink/releases/tag/v1.6.0), released
2021-05-17.
[1.6.1](https://github.com/google/tink/releases/tag/v1.6.1), released
2021-07-12.

In addition to the versioned releases, snapshots of Tink are regularly built
using the master branch of the Tink GitHub repository.
Expand All @@ -35,7 +35,7 @@ following configuration:
<dependency>
<groupId>com.google.crypto.tink</groupId>
<artifactId>tink</artifactId>
<version>1.6.0</version>
<version>1.6.1</version>
</dependency>
</dependencies>
```
Expand Down Expand Up @@ -81,7 +81,7 @@ use AWS KMS, one should also add dependency on `tink-awskms`, and similarly
<dependency>
<groupId>com.google.crypto.tink</groupId>
<artifactId>tink-awskms</artifactId>
<version>1.6.0</version>
<version>1.6.1</version>
</dependency>
</dependencies>
```
Expand All @@ -91,7 +91,7 @@ use AWS KMS, one should also add dependency on `tink-awskms`, and similarly
<dependency>
<groupId>com.google.crypto.tink</groupId>
<artifactId>tink-gcpkms</artifactId>
<version>1.6.0</version>
<version>1.6.1</version>
</dependency>
</dependencies>
```
Expand All @@ -105,7 +105,7 @@ following configuration:

```
dependencies {
implementation 'com.google.crypto.tink:tink-android:1.6.0'
implementation 'com.google.crypto.tink:tink-android:1.6.1'
}
```

Expand All @@ -125,10 +125,10 @@ dependencies {
## API documentation

* Java:
* [1.6.0](https://google.github.io/tink/javadoc/tink/1.6.0)
* [1.6.1](https://google.github.io/tink/javadoc/tink/1.6.1)
* [HEAD-SNAPSHOT](https://google.github.io/tink/javadoc/tink/HEAD-SNAPSHOT)
* Android:
* [1.6.0](https://google.github.io/tink/javadoc/tink-android/1.6.0)
* [1.6.1](https://google.github.io/tink/javadoc/tink-android/1.6.1)
* [HEAD-SNAPSHOT](https://google.github.io/tink/javadoc/tink-android/HEAD-SNAPSHOT)

## Important warnings
Expand Down
2 changes: 1 addition & 1 deletion docs/TINKEY.md
Expand Up @@ -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.6.0.tar.gz. This version should
https://storage.googleapis.com/tinkey/tinkey-1.6.1.tar.gz. This version should
work well on Linux, macOS and Windows.

## Install with Homebrew
Expand Down
2 changes: 1 addition & 1 deletion go/tink/version.go
Expand Up @@ -18,5 +18,5 @@ package tink

const (
// Version is the current version of Tink.
Version = "1.6.0"
Version = "1.6.1"
)
4 changes: 4 additions & 0 deletions objc/CHANGELOG
@@ -1,3 +1,7 @@
Version 1.6.1
==================================
No changes to the Obj-C implementation since 1.6.0.

Version 1.6.0
==================================
Implement serializedKeysetNoSecret method on TINKKeysetHandle.
Expand Down
2 changes: 1 addition & 1 deletion python/VERSION
@@ -1,2 +1,2 @@
""" Version of the current release of Tink """
TINK_VERSION_LABEL = "1.6.0"
TINK_VERSION_LABEL = "1.6.1"
2 changes: 1 addition & 1 deletion tink_version.bzl
@@ -1,2 +1,2 @@
""" Version of the current release of Tink """
TINK_VERSION_LABEL = "1.6.0"
TINK_VERSION_LABEL = "1.6.1"
2 changes: 1 addition & 1 deletion tink_version.cmake
@@ -1,2 +1,2 @@
# Version of the current release of Tink.
set(TINK_VERSION_LABEL 1.6.0)
set(TINK_VERSION_LABEL 1.6.1)

0 comments on commit a7b2305

Please sign in to comment.