Skip to content

Commit

Permalink
release 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asolntsev committed Jan 21, 2021
1 parent 29df4f2 commit 793fc52
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
13 changes: 7 additions & 6 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
== Changelog

=== 1.6.0
=== 1.6.0 (released 21.01.2021)
* #4 add methods to search within given pages of PDF
* added method doesNotContainText() and doesNotContainExactText
* upgraded to pdfbox 2.0.21 and AssertJ 3.17.1
* upgraded to pdfbox 2.0.22 and AssertJ 3.18.1

=== 1.5.2
=== 1.5.2 (released 15.07.2020)
* upgraded to pdfbox 2.0.20 and JUnit 4.13

=== 1.5.1
=== 1.5.1 (released 27.11.2018)
* upgraded to pdfbox 2.0.12

=== 1.5.0
=== 1.5.0 (released 04.06.2018)
* upgraded to pdfbox 2.0.9
* upgraded to Java 8

=== 1.4
=== 1.4 (released 02.04.2016)
* upgraded to pdfbox 2.0.0
* change license to less restrictive MIT
* add fields PDF for checking signed PDFs: signed, signerName, signatureTime.
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ apply plugin: 'com.github.kt3k.coveralls'

group='com.codeborne'
archivesBaseName = 'pdf-test'
version='1.6.0-SNAPSHOT'
version='1.6.0'

[compileJava, compileTestJava]*.options.collect {options -> options.encoding = 'UTF-8'}
[compileJava, compileTestJava]*.options.collect {options -> options.debug = true}
Expand All @@ -27,9 +27,9 @@ targetCompatibility = 1.8
defaultTasks 'test', 'install'

dependencies {
implementation group: 'org.apache.pdfbox', name: 'pdfbox', version: '2.0.21', transitive: true
implementation group: 'org.apache.pdfbox', name: 'pdfbox', version: '2.0.22', transitive: true
implementation group: 'org.hamcrest', name: 'hamcrest-core', version: '1.3', transitive: false
testImplementation group: 'junit', name: 'junit', version: '4.13', transitive: false
testImplementation group: 'junit', name: 'junit', version: '4.13.1', transitive: false
testImplementation group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3', transitive: false
}

Expand Down

0 comments on commit 793fc52

Please sign in to comment.