Skip to content

Commit

Permalink
Merge pull request fixing potential NPE when getting links
Browse files Browse the repository at this point in the history
Update README and CHANGELOG
Update version
  • Loading branch information
barteksc committed Dec 15, 2017
1 parent 38d70ad commit 981f4cc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.8.2 (2017-12-15)
* Merge pull request by [mcsong](https://github.com/mcsong) fixing potential NPE when getting links

## 1.8.1 (2017-11-15)
* Handle `PdfiumCore#getPageSize()` errors and return `Size(0, 0)`

Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@ API is highly compatible with original version, only additional methods were cre

1.8.1 handles errors when using `PdfiumCore#getPageSize(PdfDocument, int)` and returns `Size(0, 0)` when error occurs

1.8.2 merges pull request by [mcsong](https://github.com/mcsong) fixing potential NPE when getting links

## Installation
Add to _build.gradle_:

`compile 'com.github.barteksc:pdfium-android:1.8.1'`
`compile 'com.github.barteksc:pdfium-android:1.8.2'`

Library is available in jcenter and Maven Central repositories.

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ext {
siteUrl = 'https://github.com/barteksc/PdfiumAndroid'
gitUrl = 'https://github.com/barteksc/PdfiumAndroid.git'

libraryVersion = '1.8.1'
libraryVersion = '1.8.2'

developerId = 'barteksc'
developerName = 'Bartosz Schiller'
Expand All @@ -44,7 +44,7 @@ android {
minSdkVersion 9
targetSdkVersion 25
versionCode 1
versionName "1.8.1"
versionName "1.8.2"
}
buildTypes {
release {
Expand Down

0 comments on commit 981f4cc

Please sign in to comment.