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

Commit 1126e6f

Browse files
committed
Version bump to 1.3.0-rc4.
PiperOrigin-RevId: 296131806 (cherry picked from commit a61aaee)
1 parent b982201 commit 1126e6f

File tree

9 files changed

+25
-21
lines changed

9 files changed

+25
-21
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ AEAD primitive in Java:
109109
* [Java and Android](docs/JAVA-HOWTO.md), [C++](docs/CPP-HOWTO.md),
110110
[Obj-C](docs/OBJC-HOWTO.md), and [Go](docs/GOLANG-HOWTO.md) are field
111111
tested and ready for production. The latest version is
112-
[1.3.0-rc3](https://github.com/google/tink/releases/tag/v1.3.0-rc3),
113-
released on 2019-12-19.
112+
[1.3.0-rc4](https://github.com/google/tink/releases/tag/v1.3.0-rc4),
113+
released on 2020-02-19.
114114

115115
* Tink for Python and JavaScript are in active development.
116116

apps/paymentmethodtoken/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
## Latest release
44

55
The most recent release is
6-
[1.3.0-rc3](https://github.com/google/tink/releases/tag/v1.3.0-rc3), released
7-
2019-12-19. API docs can be found
8-
[here](https://google.github.com/tink/javadoc/apps-paymentmethodtoken/1.3.0-rc3).
6+
[1.3.0-rc4](https://github.com/google/tink/releases/tag/v1.3.0-rc4), released
7+
2020-02-19. API docs can be found
8+
[here](https://google.github.com/tink/javadoc/apps-paymentmethodtoken/1.3.0-rc4).
99

1010
The Maven group ID is `com.google.crypto.tink`, and the artifact ID is
1111
`apps-paymentmethodtoken`.
@@ -16,7 +16,7 @@ To add a dependency using Maven:
1616
<dependency>
1717
<groupId>com.google.crypto.tink</groupId>
1818
<artifactId>apps-paymentmethodtoken</artifactId>
19-
<version>1.3.0-rc3</version>
19+
<version>1.3.0-rc4</version>
2020
</dependency>
2121
```
2222

apps/rewardedads/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ AdMob Rewarded Ads.
66
## Latest Release
77

88
The most recent release is
9-
[1.3.0-rc3](https://github.com/google/tink/releases/tag/v1.3.0-rc3), released
10-
2019-12-19. API docs can be found
11-
[here](https://google.github.com/tink/javadoc/apps-rewardedads/1.3.0-rc3).
9+
[1.3.0-rc4](https://github.com/google/tink/releases/tag/v1.3.0-rc4), released
10+
2020-02-19. API docs can be found
11+
[here](https://google.github.com/tink/javadoc/apps-rewardedads/1.3.0-rc4).
1212

1313
The Maven group ID is `com.google.crypto.tink`, and the artifact ID is
1414
`apps-rewardedads`.
@@ -19,7 +19,7 @@ To add a dependency using Maven:
1919
<dependency>
2020
<groupId>com.google.crypto.tink</groupId>
2121
<artifactId>apps-rewardedads</artifactId>
22-
<version>1.3.0-rc3</version>
22+
<version>1.3.0-rc4</version>
2323
</dependency>
2424
```
2525

apps/webpush/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ To add a dependency using Maven:
1111
<dependency>
1212
<groupId>com.google.crypto.tink</groupId>
1313
<artifactId>apps-webpush</artifactId>
14-
<version>1.3.0-rc3</version>
14+
<version>1.3.0-rc4</version>
1515
</dependency>
1616
```
1717

1818
To add a dependency using Gradle:
1919

2020
```
2121
dependencies {
22-
compile 'com.google.crypto.tink:apps-webpush:1.3.0-rc3'
22+
compile 'com.google.crypto.tink:apps-webpush:1.3.0-rc4'
2323
}
2424
```
2525

cc/version_script.lds

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERS_1.3.0-rc3 {
1+
VERS_1.3.0-rc4 {
22
global:
33
*tink*;
44
*absl*;

docs/JAVA-HOWTO.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ hacking guide](JAVA-HACKING.md).
99
## Setup instructions
1010

1111
The most recent release is
12-
[1.3.0-rc3](https://github.com/google/tink/releases/tag/v1.3.0-rc3), released
13-
2019-12-19.
12+
[1.3.0-rc4](https://github.com/google/tink/releases/tag/v1.3.0-rc4), released
13+
2020-02-19.
1414

1515
In addition to the versioned releases, snapshots of Tink are regurlarly built
1616
using the master branch of the Tink GitHub repository.
@@ -35,7 +35,7 @@ following configuration:
3535
<dependency>
3636
<groupId>com.google.crypto.tink</groupId>
3737
<artifactId>tink</artifactId>
38-
<version>1.3.0-rc3</version>
38+
<version>1.3.0-rc4</version>
3939
</dependency>
4040
</dependencies>
4141
```
@@ -79,7 +79,7 @@ following configuration:
7979

8080
```
8181
dependencies {
82-
compile 'com.google.crypto.tink:tink-android:1.3.0-rc3'
82+
compile 'com.google.crypto.tink:tink-android:1.3.0-rc4'
8383
}
8484
```
8585

@@ -99,10 +99,10 @@ dependencies {
9999
## API documentation
100100

101101
* Java:
102-
* [1.3.0-rc3](https://google.github.com/tink/javadoc/tink/1.3.0-rc3)
102+
* [1.3.0-rc4](https://google.github.com/tink/javadoc/tink/1.3.0-rc4)
103103
* [HEAD-SNAPSHOT](https://google.github.com/tink/javadoc/tink/HEAD-SNAPSHOT)
104104
* Android:
105-
* [1.3.0-rc3](https://google.github.com/tink/javadoc/tink-android/1.3.0-rc3)
105+
* [1.3.0-rc4](https://google.github.com/tink/javadoc/tink-android/1.3.0-rc4)
106106
* [HEAD-SNAPSHOT](https://google.github.com/tink/javadoc/tink-android/HEAD-SNAPSHOT)
107107

108108
## Important warnings

objc/CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 1.3.0-rc4
2+
=================================
3+
This is a pre-release version.
4+
15
Version 1.3.0-rc3
26
=================================
37
Update CocoaPod so new APIs are actually included.

tink_version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
""" Version of the current release of Tink """
2-
TINK_VERSION_LABEL = "1.3.0-rc3"
2+
TINK_VERSION_LABEL = "1.3.0-rc4"

tink_version.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Version of the current release of Tink.
2-
set(TINK_VERSION_LABEL 1.3.0-rc3)
2+
set(TINK_VERSION_LABEL 1.3.0-rc4)

0 commit comments

Comments
 (0)