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

Commit a7b2305

Browse files
committed
Version bump to 1.6.1.
PiperOrigin-RevId: 384286927 (cherry picked from commit 99d3796)
1 parent 983c21e commit a7b2305

File tree

12 files changed

+36
-32
lines changed

12 files changed

+36
-32
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ presented at [Real World Crypto 2019](https://rwc.iacr.org/2019/).
4848
[Java/Android](docs/JAVA-HOWTO.md), [C++](docs/CPP-HOWTO.md),
4949
[Obj-C](docs/OBJC-HOWTO.md), [Go](docs/GOLANG-HOWTO.md), and
5050
[Python](docs/PYTHON-HOWTO.md) are field tested and ready for production. The
51-
latest version is [1.6.0](https://github.com/google/tink/releases/tag/v1.6.0),
52-
released on 2021-05-17.
51+
latest version is [1.6.1](https://github.com/google/tink/releases/tag/v1.6.1),
52+
released on 2021-07-12.
5353

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

@@ -83,15 +83,15 @@ go get github.com/google/tink/go/...
8383
<dependency>
8484
<groupId>com.google.crypto.tink</groupId>
8585
<artifactId>tink</artifactId>
86-
<version>1.6.0</version>
86+
<version>1.6.1</version>
8787
</dependency>
8888
```
8989

9090
* Android
9191

9292
```
9393
dependencies {
94-
implementation 'com.google.crypto.tink:tink-android:1.6.0'
94+
implementation 'com.google.crypto.tink:tink-android:1.6.1'
9595
}
9696
```
9797

@@ -100,7 +100,7 @@ dependencies {
100100
```sh
101101
cd /path/to/your/Xcode project/
102102
pod init
103-
pod 'Tink', '1.6.0'
103+
pod 'Tink', '1.6.1'
104104
pod install
105105
```
106106

apps/paymentmethodtoken/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
## Latest release
44

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

1010
The Maven group ID is `com.google.crypto.tink`, and the artifact ID is
1111
`apps-paymentmethodtoken`.
@@ -16,7 +16,7 @@ To add a dependency using Maven:
1616
<dependency>
1717
<groupId>com.google.crypto.tink</groupId>
1818
<artifactId>apps-paymentmethodtoken</artifactId>
19-
<version>1.6.0</version>
19+
<version>1.6.1</version>
2020
</dependency>
2121
```
2222

apps/rewardedads/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ AdMob Rewarded Ads.
66
## Latest Release
77

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

1313
The Maven group ID is `com.google.crypto.tink`, and the artifact ID is
1414
`apps-rewardedads`.
@@ -19,7 +19,7 @@ To add a dependency using Maven:
1919
<dependency>
2020
<groupId>com.google.crypto.tink</groupId>
2121
<artifactId>apps-rewardedads</artifactId>
22-
<version>1.6.0</version>
22+
<version>1.6.1</version>
2323
</dependency>
2424
```
2525

apps/webpush/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ This Tink app is an implementation of [RFC 8291 - Message Encryption for Web
44
Push](https://tools.ietf.org/html/rfc8291).
55

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

1111
## Installation
1212

@@ -16,15 +16,15 @@ To add a dependency using Maven:
1616
<dependency>
1717
<groupId>com.google.crypto.tink</groupId>
1818
<artifactId>apps-webpush</artifactId>
19-
<version>1.6.0</version>
19+
<version>1.6.1</version>
2020
</dependency>
2121
```
2222

2323
To add a dependency using Gradle:
2424

2525
```
2626
dependencies {
27-
implementation 'com.google.crypto.tink:apps-webpush:1.6.0'
27+
implementation 'com.google.crypto.tink:apps-webpush:1.6.1'
2828
}
2929
```
3030

cc/version_script.lds

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERS_1.6.0 {
1+
VERS_1.6.1 {
22
global:
33
*tink*;
44
*absl*;

docs/JAVA-HOWTO.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ hacking guide](JAVA-HACKING.md).
99
## Setup instructions
1010

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

1515
In addition to the versioned releases, snapshots of Tink are regularly built
1616
using the master branch of the Tink GitHub repository.
@@ -35,7 +35,7 @@ following configuration:
3535
<dependency>
3636
<groupId>com.google.crypto.tink</groupId>
3737
<artifactId>tink</artifactId>
38-
<version>1.6.0</version>
38+
<version>1.6.1</version>
3939
</dependency>
4040
</dependencies>
4141
```
@@ -81,7 +81,7 @@ use AWS KMS, one should also add dependency on `tink-awskms`, and similarly
8181
<dependency>
8282
<groupId>com.google.crypto.tink</groupId>
8383
<artifactId>tink-awskms</artifactId>
84-
<version>1.6.0</version>
84+
<version>1.6.1</version>
8585
</dependency>
8686
</dependencies>
8787
```
@@ -91,7 +91,7 @@ use AWS KMS, one should also add dependency on `tink-awskms`, and similarly
9191
<dependency>
9292
<groupId>com.google.crypto.tink</groupId>
9393
<artifactId>tink-gcpkms</artifactId>
94-
<version>1.6.0</version>
94+
<version>1.6.1</version>
9595
</dependency>
9696
</dependencies>
9797
```
@@ -105,7 +105,7 @@ following configuration:
105105

106106
```
107107
dependencies {
108-
implementation 'com.google.crypto.tink:tink-android:1.6.0'
108+
implementation 'com.google.crypto.tink:tink-android:1.6.1'
109109
}
110110
```
111111

@@ -125,10 +125,10 @@ dependencies {
125125
## API documentation
126126

127127
* Java:
128-
* [1.6.0](https://google.github.io/tink/javadoc/tink/1.6.0)
128+
* [1.6.1](https://google.github.io/tink/javadoc/tink/1.6.1)
129129
* [HEAD-SNAPSHOT](https://google.github.io/tink/javadoc/tink/HEAD-SNAPSHOT)
130130
* Android:
131-
* [1.6.0](https://google.github.io/tink/javadoc/tink-android/1.6.0)
131+
* [1.6.1](https://google.github.io/tink/javadoc/tink-android/1.6.1)
132132
* [HEAD-SNAPSHOT](https://google.github.io/tink/javadoc/tink-android/HEAD-SNAPSHOT)
133133

134134
## Important warnings

docs/TINKEY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Tinkey requires Java 8 or later to run.
1010
## Install from prebuilt binaries
1111

1212
Download the latest version of Tinkey from
13-
https://storage.googleapis.com/tinkey/tinkey-1.6.0.tar.gz. This version should
13+
https://storage.googleapis.com/tinkey/tinkey-1.6.1.tar.gz. This version should
1414
work well on Linux, macOS and Windows.
1515

1616
## Install with Homebrew

go/tink/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ package tink
1818

1919
const (
2020
// Version is the current version of Tink.
21-
Version = "1.6.0"
21+
Version = "1.6.1"
2222
)

objc/CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 1.6.1
2+
==================================
3+
No changes to the Obj-C implementation since 1.6.0.
4+
15
Version 1.6.0
26
==================================
37
Implement serializedKeysetNoSecret method on TINKKeysetHandle.

python/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
""" Version of the current release of Tink """
2-
TINK_VERSION_LABEL = "1.6.0"
2+
TINK_VERSION_LABEL = "1.6.1"

0 commit comments

Comments
 (0)