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

Commit

Permalink
Update version references to 1.2.0-rc3.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 206342564
GitOrigin-RevId: 3e0e15cb40395fd6f9e5af917c23c84de081b532
  • Loading branch information
chuckx committed Jul 27, 2018
1 parent 2561fc3 commit 359f3ce
Show file tree
Hide file tree
Showing 4 changed files with 14 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:

* [Tink for Java and Android](docs/JAVA-HOWTO.md) are field tested and ready
for production. The latest version is
[1.2.0-rc2](https://github.com/google/tink/releases/tag/v1.2.0-rc2),
released on 2018-07-13.
[1.2.0-rc3](https://github.com/google/tink/releases/tag/v1.2.0-rc3),
released on 2018-07-27.

* [Tink for C++](docs/CPP-HOWTO.md) and [Tink for Obj-C](docs/OBJC-HOWTO.md)
are almost ready for production. The latest version is
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-rc2](https://github.com/google/tink/releases/tag/v1.2.0-rc2), released
2018-07-13. API docs can be found
[here](https://google.github.com/tink/javadoc/apps-paymentmethodtoken/1.2.0-rc2).
[1.2.0-rc3](https://github.com/google/tink/releases/tag/v1.2.0-rc3), released
2018-07-27. API docs can be found
[here](https://google.github.com/tink/javadoc/apps-paymentmethodtoken/1.2.0-rc3).

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-rc2</version>
<version>1.2.0-rc3</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-rc2</version>
<version>1.2.0-rc3</version>
</dependency>
```

To add a dependency using Gradle:

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

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-rc2](https://github.com/google/tink/releases/tag/v1.2.0-rc2), released
2018-07-13.
[1.2.0-rc3](https://github.com/google/tink/releases/tag/v1.2.0-rc3), released
2018-07-27.

Java developers can add Tink using Maven:

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

Android developers can add Tink using Gradle:

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

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

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

## Important Warnings
Expand Down

0 comments on commit 359f3ce

Please sign in to comment.