Skip to content

Commit cb10938

Browse files
author
PSPDFKit
committed
Release 3.7.0
1 parent 7e28d95 commit cb10938

35 files changed

+3129
-798
lines changed

ACKNOWLEDGEMENTS.md

+295-321
Large diffs are not rendered by default.

CHANGELOG.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
## Newest Release
22

3+
### 3.7.0 - 07 Sep 2023
4+
5+
- Adds annotation preset customization. (#41669)
6+
- Updates for PSPDFKit 8.8.1 for Android. (#41910)
7+
- Updates for PSPDFKit 12.3.1 for iOS. (#41910)
8+
- Updates the deployment target to iOS 15. (#39956)
9+
- Updates example catalog with PspdfkitWidget usage. (#40861)
10+
11+
## Previous Releases
12+
313
### 3.6.0 - 08 May 2023
414
- Adds measurement tools. (#39806)
515
- Updates for PSPDFKit 8.6.0 for Android. (#39501)
616
- Updates for PSPDFKit 12.2 for iOS. (#39995)
717

8-
## Previous Releases
9-
1018
### 3.5.1 - 15 Mar 2023
1119
- Updates iOS license initialization in the example catalog. (#38999)
1220
- Updates Instant web demo links. (#39018)

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ Platform specific README exists for [Android](android/) and [iOS](ios/).
190190
open ios/Runner.xcworkspace
191191
```
192192
193-
4. Make sure the `iOS Deployment Target` is set to 14.0 or higher.
193+
4. Make sure the `iOS Deployment Target` is set to 15.0 or higher.
194194
195195
![iOS Deployment Target](screenshots/ios-deployment-target.png)
196196
@@ -225,11 +225,11 @@ Platform specific README exists for [Android](android/) and [iOS](ios/).
225225
open ios/Podfile
226226
```
227227
228-
10. Update the platform to iOS 14 and add the PSPDFKit Podspec:
228+
10. Update the platform to iOS 15 and add the PSPDFKit Podspec:
229229
230230
```diff
231231
-# platform :ios, '9.0'
232-
+ platform :ios, '14.0'
232+
+ platform :ios, '15.0'
233233
...
234234
target 'Runner' do
235235
use_frameworks!

analysis_options.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ analyzer:
1616
dead_code: warning
1717
# avoid_print: false
1818

19-
strong-mode:
20-
implicit-casts: false
21-
implicit-dynamic: false
22-
2319
linter:
2420
rules:
2521
- always_declare_return_types

android/config.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ if (pspdfkitMavenUrl == null || pspdfkitMavenUrl == '') {
3838

3939
ext.pspdfkitVersion = localProperties.getProperty('pspdfkit.version')
4040
if (pspdfkitVersion == null || pspdfkitVersion == '') {
41-
ext.pspdfkitVersion = '8.6.0'
41+
ext.pspdfkitVersion = '8.8.1'
4242
}
4343

4444
ext.pspdfkitMavenModuleName = 'pspdfkit'

0 commit comments

Comments
 (0)