This repository was archived by the owner on Apr 17, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 10 files changed +30
-26
lines changed
Expand file tree Collapse file tree 10 files changed +30
-26
lines changed Original file line number Diff line number Diff 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
5454Javascript/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```
9393dependencies {
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
101101cd /path/to/your/Xcode project/
102102pod init
103- pod ' Tink' , ' 1.5 .0'
103+ pod ' Tink' , ' 1.6 .0'
104104pod install
105105```
106106
Original file line number Diff line number Diff line change 33## Latest release
44
55The 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
1010The 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
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ AdMob Rewarded Ads.
66## Latest Release
77
88The 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
1313The 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
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ This Tink app is an implementation of [RFC 8291 - Message Encryption for Web
44Push] ( https://tools.ietf.org/html/rfc8291 ) .
55
66The 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
2323To add a dependency using Gradle:
2424
2525```
2626dependencies {
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
Original file line number Diff line number Diff line change 1- VERS_1.5 .0 {
1+ VERS_1.6 .0 {
22 global :
33 *tink*;
44 *absl*;
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ hacking guide](JAVA-HACKING.md).
99## Setup instructions
1010
1111The 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
1515In addition to the versioned releases, snapshots of Tink are regularly built
1616using 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```
Original file line number Diff line number Diff line change 1+ Version 1.6.0
2+ ==================================
3+ Implement serializedKeysetNoSecret method on TINKKeysetHandle.
4+
15Version 1.5.0
26==================================
3- Added support for accessGropus to TINKKeysetHandle.
7+ Added support for accessGroups to TINKKeysetHandle.
48Removed unused C++ dependencies.
59Merged https://github.com/google/tink/pull/434: fixing nullability issues.
610
Original file line number Diff line number Diff line change 11""" Version of the current release of Tink """
2- TINK_VERSION_LABEL = "1.5 .0"
2+ TINK_VERSION_LABEL = "1.6 .0"
Original file line number Diff line number Diff line change 11""" Version of the current release of Tink """
2- TINK_VERSION_LABEL = "1.5 .0"
2+ TINK_VERSION_LABEL = "1.6 .0"
Original file line number Diff line number Diff line change 11# Version of the current release of Tink.
2- set (TINK_VERSION_LABEL 1.5 .0)
2+ set (TINK_VERSION_LABEL 1.6 .0)
You can’t perform that action at this time.
0 commit comments