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

Commit

Permalink
Bumping version number to 1.2.1.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 221436661
GitOrigin-RevId: 7e3e6a1c69adac8c6e66d40ebfce00e5e4831ec4
  • Loading branch information
thaidn authored and Tink Team committed Nov 14, 2018
1 parent 9fd4b67 commit 2ec8d12
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 17 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ AEAD primitive in Java:

## Current Status

* [Java and Android](docs/JAVA-HOWTO.md),
[C++](docs/CPP-HOWTO.md) and [Obj-C](docs/OBJC-HOWTO.md)
are field tested and ready for production. The latest version is
[1.2.0](https://github.com/google/tink/releases/tag/v1.2.0),
released on 2018-08-09.
* [Java and Android](docs/JAVA-HOWTO.md), [C++](docs/CPP-HOWTO.md) and
[Obj-C](docs/OBJC-HOWTO.md) are field tested and ready for production. The
latest version is
[1.2.1](https://github.com/google/tink/releases/tag/v1.2.1), released on
2018-11-15.

* Tink for Go and JavaScript are in active development.

Expand Down
6 changes: 3 additions & 3 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.2.0](https://github.com/google/tink/releases/tag/v1.2.0), released
[1.2.1](https://github.com/google/tink/releases/tag/v1.2.1), released
2018-08-09. API docs can be found
[here](https://google.github.com/tink/javadoc/apps-paymentmethodtoken/1.2.0).
[here](https://google.github.com/tink/javadoc/apps-paymentmethodtoken/1.2.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.2.0</version>
<version>1.2.1</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions apps/webpush/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ To add a dependency using Maven:
<dependency>
<groupId>com.google.crypto.tink</groupId>
<artifactId>apps-webpush</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</dependency>
```

To add a dependency using Gradle:

```
dependencies {
compile 'com.google.crypto.tink:apps-webpush:1.2.0'
compile 'com.google.crypto.tink:apps-webpush:1.2.1'
}
```

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.2 {
VERS_1.2.1 {
global:
*tink*;
*absl*;
Expand Down
12 changes: 6 additions & 6 deletions docs/JAVA-HOWTO.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,24 @@ Tink can be installed with Maven or Gradle. The Maven group ID is
`com.google.crypto.tink`, and the artifact ID is `tink`.

The most recent release is
[1.2.0](https://github.com/google/tink/releases/tag/v1.2.0), released
2018-08-09.
[1.2.1](https://github.com/google/tink/releases/tag/v1.2.1), released
2018-11-12.

Java developers can add Tink using Maven:

```xml
<dependency>
<groupId>com.google.crypto.tink</groupId>
<artifactId>tink</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</dependency>
```

Android developers can add Tink using Gradle:

```
dependencies {
compile 'com.google.crypto.tink:tink-android:1.2.0'
compile 'com.google.crypto.tink:tink-android:1.2.1'
}
```

Expand Down Expand Up @@ -82,10 +82,10 @@ dependencies {
## API docs

* Java:
* [1.2.0](https://google.github.com/tink/javadoc/tink/1.2.0)
* [1.2.1](https://google.github.com/tink/javadoc/tink/1.2.1)
* [HEAD-SNAPSHOT](https://google.github.com/tink/javadoc/tink/HEAD-SNAPSHOT)
* Android:
* [1.2.0](https://google.github.com/tink/javadoc/tink-android/1.2.0)
* [1.2.1](https://google.github.com/tink/javadoc/tink-android/1.2.1)
* [HEAD-SNAPSHOT](https://google.github.com/tink/javadoc/tink-android/HEAD-SNAPSHOT)

## Important Warnings
Expand Down
4 changes: 4 additions & 0 deletions objc/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 1.2.1
==================================
No changes to the Obj-C implementation.

Version 1.2.0
==================================
Added support for IEEE P1363 signature encoding.
Expand Down

0 comments on commit 2ec8d12

Please sign in to comment.