Skip to content

Commit 972adf5

Browse files
author
PSPDFKit
committed
Release 2.0.1
1 parent 0fd4c99 commit 972adf5

File tree

9 files changed

+28
-7
lines changed

9 files changed

+28
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
## Newest Release
22

3+
### 2.0.1 - 05 Oct 2021
4+
5+
- Re-add Java 8 language features. (#31288)
6+
7+
## Previous Releases
8+
39
### 2.0.0 - 28 Sep 2021
410

511
- Adds the ability to open TIFF images as Image Documents. (#30103)
@@ -10,8 +16,6 @@
1016
- Updates `peerDependencies` and `devDependencies` in `package.json`. (#30947)
1117
- Overhauls the Catalog and NativeCatalog example projects to use the newest version of React Native. (#29342)
1218

13-
## Previous Releases
14-
1519
### 1.32.2 - 30 Aug 2021
1620

1721
- Migrate from `ReactFragmentActivity` to `ReactActivity` for compatibility with React Native `0.65.1`. (#30771)

android/build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@ android {
4646
versionCode 1
4747
versionName "1.0"
4848
}
49+
50+
compileOptions {
51+
sourceCompatibility JavaVersion.VERSION_1_8
52+
targetCompatibility JavaVersion.VERSION_1_8
53+
}
4954

5055
lintOptions {
5156
abortOnError false

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-pspdfkit",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "React Native PDF Library by PSPDFKit",
55
"keywords": [
66
"react native",

samples/Catalog/android/app/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,12 @@ android {
133133
versionName "1.0"
134134
multiDexEnabled true
135135
}
136+
137+
compileOptions {
138+
sourceCompatibility JavaVersion.VERSION_1_8
139+
targetCompatibility JavaVersion.VERSION_1_8
140+
}
141+
136142
splits {
137143
abi {
138144
reset()

samples/Catalog/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Catalog",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"private": true,
55
"scripts": {
66
"android": "react-native run-android",

samples/Catalog/yarn.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6068,7 +6068,7 @@ react-native-iphone-x-helper@^1.3.0:
60686068
integrity sha512-HOf0jzRnq2/aFUcdCJ9w9JGzN3gdEg0zFE4FyYlp4jtidqU03D5X7ZegGKfT1EWteR0gPBGp9ye5T5FvSWi9Yg==
60696069

60706070
"react-native-pspdfkit@file:../..":
6071-
version "2.0.0"
6071+
version "2.0.1"
60726072

60736073
react-native-safe-area-context@^3.3.2:
60746074
version "3.3.2"

samples/NativeCatalog/android/app/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,12 @@ android {
133133
versionName "1.0"
134134
multiDexEnabled true
135135
}
136+
137+
compileOptions {
138+
sourceCompatibility JavaVersion.VERSION_1_8
139+
targetCompatibility JavaVersion.VERSION_1_8
140+
}
141+
136142
splits {
137143
abi {
138144
reset()

samples/NativeCatalog/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "NativeCatalog",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"private": true,
55
"scripts": {
66
"android": "react-native run-android",

samples/NativeCatalog/yarn.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6068,7 +6068,7 @@ react-native-iphone-x-helper@^1.3.0:
60686068
integrity sha512-HOf0jzRnq2/aFUcdCJ9w9JGzN3gdEg0zFE4FyYlp4jtidqU03D5X7ZegGKfT1EWteR0gPBGp9ye5T5FvSWi9Yg==
60696069

60706070
"react-native-pspdfkit@file:../..":
6071-
version "2.0.0"
6071+
version "2.0.1"
60726072

60736073
react-native-safe-area-context@^3.3.2:
60746074
version "3.3.2"

0 commit comments

Comments
 (0)