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

Commit

Permalink
Resuming 1.6.0 release.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 374257581
  • Loading branch information
chuckx authored and copybara-github committed May 17, 2021
1 parent 8b1b361 commit de84fd2
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 26 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
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.5.0](https://github.com/google/tink/releases/tag/v1.5.0),
released on 2020-10-13.
latest version is [1.6.0](https://github.com/google/tink/releases/tag/v1.6.0),
released on 2021-05-17.

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.5.0</version>
<version>1.6.0</version>
</dependency>
```

* Android

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

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

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

The most recent release is
[1.5.0](https://github.com/google/tink/releases/tag/v1.5.0), released
2020-10-13. API docs can be found
[here](https://google.github.io/tink/javadoc/apps-paymentmethodtoken/1.5.0).
[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).

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.5.0</version>
<version>1.6.0</version>
</dependency>
```

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

The most recent release is
[1.5.0](https://github.com/google/tink/releases/tag/v1.5.0), released
2020-10-13. API docs can be found
[here](https://google.github.io/tink/javadoc/apps-rewardedads/1.5.0).
[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).

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.5.0</version>
<version>1.6.0</version>
</dependency>
```

Expand Down
10 changes: 5 additions & 5 deletions apps/webpush/README.md
Original file line number Diff line number Diff line change
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.5.0](https://github.com/google/tink/releases/tag/v1.5.0), released
2020-10-13. API docs can be found
[here](https://google.github.io/tink/javadoc/apps-webpush/1.5.0).
[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).

## 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.4.0</version>
<version>1.6.0</version>
</dependency>
```

To add a dependency using Gradle:

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

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

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

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.5.0</version>
<version>1.6.0</version>
</dependency>
</dependencies>
```
Expand Down
6 changes: 5 additions & 1 deletion objc/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Version 1.6.0
==================================
Implement serializedKeysetNoSecret method on TINKKeysetHandle.

Version 1.5.0
==================================
Added support for accessGropus to TINKKeysetHandle.
Added support for accessGroups to TINKKeysetHandle.
Removed unused C++ dependencies.
Merged https://github.com/google/tink/pull/434: fixing nullability issues.

Expand Down
2 changes: 1 addition & 1 deletion python/VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
""" Version of the current release of Tink """
TINK_VERSION_LABEL = "1.5.0"
TINK_VERSION_LABEL = "1.6.0"
2 changes: 1 addition & 1 deletion tink_version.bzl
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
""" Version of the current release of Tink """
TINK_VERSION_LABEL = "1.5.0"
TINK_VERSION_LABEL = "1.6.0"
2 changes: 1 addition & 1 deletion tink_version.cmake
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Version of the current release of Tink.
set(TINK_VERSION_LABEL 1.5.0)
set(TINK_VERSION_LABEL 1.6.0)

0 comments on commit de84fd2

Please sign in to comment.