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

Commit de84fd2

Browse files
chuckxcopybara-github
authored andcommitted
Resuming 1.6.0 release.
PiperOrigin-RevId: 374257581
1 parent 8b1b361 commit de84fd2

File tree

10 files changed

+30
-26
lines changed

10 files changed

+30
-26
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.5.0](https://github.com/google/tink/releases/tag/v1.5.0),
52-
released on 2020-10-13.
51+
latest version is [1.6.0](https://github.com/google/tink/releases/tag/v1.6.0),
52+
released on 2021-05-17.
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.5.0</version>
86+
<version>1.6.0</version>
8787
</dependency>
8888
```
8989

9090
* Android
9191

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

@@ -100,7 +100,7 @@ dependencies {
100100
```sh
101101
cd /path/to/your/Xcode project/
102102
pod init
103-
pod 'Tink', '1.5.0'
103+
pod 'Tink', '1.6.0'
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.5.0](https://github.com/google/tink/releases/tag/v1.5.0), released
7-
2020-10-13. API docs can be found
8-
[here](https://google.github.io/tink/javadoc/apps-paymentmethodtoken/1.5.0).
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).
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.5.0</version>
19+
<version>1.6.0</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.5.0](https://github.com/google/tink/releases/tag/v1.5.0), released
10-
2020-10-13. API docs can be found
11-
[here](https://google.github.io/tink/javadoc/apps-rewardedads/1.5.0).
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).
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.5.0</version>
22+
<version>1.6.0</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.5.0](https://github.com/google/tink/releases/tag/v1.5.0), released
8-
2020-10-13. API docs can be found
9-
[here](https://google.github.io/tink/javadoc/apps-webpush/1.5.0).
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).
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.4.0</version>
19+
<version>1.6.0</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.4.0'
27+
implementation 'com.google.crypto.tink:apps-webpush:1.6.0'
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.5.0 {
1+
VERS_1.6.0 {
22
global:
33
*tink*;
44
*absl*;

docs/JAVA-HOWTO.md

Lines changed: 3 additions & 3 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.5.0](https://github.com/google/tink/releases/tag/v1.5.0), released
13-
2020-07-13.
12+
[1.6.0](https://github.com/google/tink/releases/tag/v1.6.0), released
13+
2021-05-17.
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.5.0</version>
38+
<version>1.6.0</version>
3939
</dependency>
4040
</dependencies>
4141
```

objc/CHANGELOG

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
Version 1.6.0
2+
==================================
3+
Implement serializedKeysetNoSecret method on TINKKeysetHandle.
4+
15
Version 1.5.0
26
==================================
3-
Added support for accessGropus to TINKKeysetHandle.
7+
Added support for accessGroups to TINKKeysetHandle.
48
Removed unused C++ dependencies.
59
Merged https://github.com/google/tink/pull/434: fixing nullability issues.
610

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.5.0"
2+
TINK_VERSION_LABEL = "1.6.0"

tink_version.bzl

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.5.0"
2+
TINK_VERSION_LABEL = "1.6.0"

tink_version.cmake

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-
set(TINK_VERSION_LABEL 1.5.0)
2+
set(TINK_VERSION_LABEL 1.6.0)

0 commit comments

Comments
 (0)