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.2.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 230785575
GitOrigin-RevId: b9a858a2c74ef3d7a5e9d6adca72d4b02b6ff621
(cherry picked from commit 621b573)
  • Loading branch information
chuckx committed Jan 24, 2019
1 parent de56db8 commit 6f073f1
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 13 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.1](https://github.com/google/tink/releases/tag/v1.2.1), released on
2018-11-15.
[1.2.2](https://github.com/google/tink/releases/tag/v1.2.2), released on
2019-01-24.

* 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.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.1).
[1.2.2](https://github.com/google/tink/releases/tag/v1.2.2), released
2019-01-24. API docs can be found
[here](https://google.github.com/tink/javadoc/apps-paymentmethodtoken/1.2.2).

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.1</version>
<version>1.2.2</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.1</version>
<version>1.2.2</version>
</dependency>
```

To add a dependency using Gradle:

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

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.1 {
VERS_1.2.2 {
global:
*tink*;
*absl*;
Expand Down
8 changes: 4 additions & 4 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.1](https://github.com/google/tink/releases/tag/v1.2.1), released
2018-11-12.
[1.2.2](https://github.com/google/tink/releases/tag/v1.2.2), released
2019-01-24.

Java developers can add Tink using Maven:

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

Android developers can add Tink using Gradle:

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

Expand Down
5 changes: 5 additions & 0 deletions objc/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 1.2.2
==================================
Staticly linking BoringSSL in the CocoaPod build to prevent namespace clashes
when Tink is used alongside pods that depend on OpenSSL.

Version 1.2.1
==================================
No changes to the Obj-C implementation.
Expand Down

0 comments on commit 6f073f1

Please sign in to comment.