Skip to content

Commit

Permalink
Release 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
PSPDFKit committed Oct 5, 2021
1 parent 0fd4c99 commit 972adf5
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 7 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## Newest Release

### 2.0.1 - 05 Oct 2021

- Re-add Java 8 language features. (#31288)

## Previous Releases

### 2.0.0 - 28 Sep 2021

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

## Previous Releases

### 1.32.2 - 30 Aug 2021

- Migrate from `ReactFragmentActivity` to `ReactActivity` for compatibility with React Native `0.65.1`. (#30771)
Expand Down
5 changes: 5 additions & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ android {
versionCode 1
versionName "1.0"
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

lintOptions {
abortOnError false
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-pspdfkit",
"version": "2.0.0",
"version": "2.0.1",
"description": "React Native PDF Library by PSPDFKit",
"keywords": [
"react native",
Expand Down
6 changes: 6 additions & 0 deletions samples/Catalog/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,12 @@ android {
versionName "1.0"
multiDexEnabled true
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

splits {
abi {
reset()
Expand Down
2 changes: 1 addition & 1 deletion samples/Catalog/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Catalog",
"version": "2.0.0",
"version": "2.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
Expand Down
2 changes: 1 addition & 1 deletion samples/Catalog/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6068,7 +6068,7 @@ react-native-iphone-x-helper@^1.3.0:
integrity sha512-HOf0jzRnq2/aFUcdCJ9w9JGzN3gdEg0zFE4FyYlp4jtidqU03D5X7ZegGKfT1EWteR0gPBGp9ye5T5FvSWi9Yg==

"react-native-pspdfkit@file:../..":
version "2.0.0"
version "2.0.1"

react-native-safe-area-context@^3.3.2:
version "3.3.2"
Expand Down
6 changes: 6 additions & 0 deletions samples/NativeCatalog/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,12 @@ android {
versionName "1.0"
multiDexEnabled true
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

splits {
abi {
reset()
Expand Down
2 changes: 1 addition & 1 deletion samples/NativeCatalog/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "NativeCatalog",
"version": "2.0.0",
"version": "2.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
Expand Down
2 changes: 1 addition & 1 deletion samples/NativeCatalog/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6068,7 +6068,7 @@ react-native-iphone-x-helper@^1.3.0:
integrity sha512-HOf0jzRnq2/aFUcdCJ9w9JGzN3gdEg0zFE4FyYlp4jtidqU03D5X7ZegGKfT1EWteR0gPBGp9ye5T5FvSWi9Yg==

"react-native-pspdfkit@file:../..":
version "2.0.0"
version "2.0.1"

react-native-safe-area-context@^3.3.2:
version "3.3.2"
Expand Down

0 comments on commit 972adf5

Please sign in to comment.