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

Commit

Permalink
Update latest version references to 1.2.0.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 208072286
GitOrigin-RevId: 2b9e5331d243821ba4a2500732bb7655a1e33bf5
  • Loading branch information
chuckx committed Aug 9, 2018
1 parent 413b6b5 commit f2df5df
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 14 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ AEAD primitive in Java:
* [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-rc4](https://github.com/google/tink/releases/tag/v1.2.0-rc4),
released on 2018-07-31.
[1.2.0](https://github.com/google/tink/releases/tag/v1.2.0),
released on 2018-08-09.

* Tink for Go and JavaScript are in active development.

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.2.0-rc4](https://github.com/google/tink/releases/tag/v1.2.0-rc4), released
2018-07-31. API docs can be found
[here](https://google.github.com/tink/javadoc/apps-paymentmethodtoken/1.2.0-rc4).
[1.2.0](https://github.com/google/tink/releases/tag/v1.2.0), released
2018-08-09. API docs can be found
[here](https://google.github.com/tink/javadoc/apps-paymentmethodtoken/1.2.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.2.0-rc4</version>
<version>1.2.0</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-rc4</version>
<version>1.2.0</version>
</dependency>
```

To add a dependency using Gradle:

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

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-rc4](https://github.com/google/tink/releases/tag/v1.2.0-rc4), released
2018-07-31.
[1.2.0](https://github.com/google/tink/releases/tag/v1.2.0), released
2018-08-09.

Java developers can add Tink using Maven:

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

Android developers can add Tink using Gradle:

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

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

* Java:
* [1.2.0-rc4](https://google.github.com/tink/javadoc/tink/1.2.0-rc4)
* [1.2.0](https://google.github.com/tink/javadoc/tink/1.2.0)
* [HEAD-SNAPSHOT](https://google.github.com/tink/javadoc/tink/HEAD-SNAPSHOT)
* Android:
* [1.2.0-rc4](https://google.github.com/tink/javadoc/tink-android/1.2.0-rc4)
* [1.2.0](https://google.github.com/tink/javadoc/tink-android/1.2.0)
* [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.0
==================================
Added support for IEEE P1363 signature encoding.

Version 1.2.0-rc4
==================================
Added API to retrieve keyset handle with public keys only.
Expand Down

0 comments on commit f2df5df

Please sign in to comment.