Skip to content

Commit 793fc52

Browse files
committed
release 1.6.0
1 parent 29df4f2 commit 793fc52

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

CHANGELOG.txt

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
== Changelog
22

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

7-
=== 1.5.2
8+
=== 1.5.2 (released 15.07.2020)
89
* upgraded to pdfbox 2.0.20 and JUnit 4.13
910

10-
=== 1.5.1
11+
=== 1.5.1 (released 27.11.2018)
1112
* upgraded to pdfbox 2.0.12
1213

13-
=== 1.5.0
14+
=== 1.5.0 (released 04.06.2018)
1415
* upgraded to pdfbox 2.0.9
1516
* upgraded to Java 8
1617

17-
=== 1.4
18+
=== 1.4 (released 02.04.2016)
1819
* upgraded to pdfbox 2.0.0
1920
* change license to less restrictive MIT
2021
* add fields PDF for checking signed PDFs: signed, signerName, signatureTime.

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ apply plugin: 'com.github.kt3k.coveralls'
1515

1616
group='com.codeborne'
1717
archivesBaseName = 'pdf-test'
18-
version='1.6.0-SNAPSHOT'
18+
version='1.6.0'
1919

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

2929
dependencies {
30-
implementation group: 'org.apache.pdfbox', name: 'pdfbox', version: '2.0.21', transitive: true
30+
implementation group: 'org.apache.pdfbox', name: 'pdfbox', version: '2.0.22', transitive: true
3131
implementation group: 'org.hamcrest', name: 'hamcrest-core', version: '1.3', transitive: false
32-
testImplementation group: 'junit', name: 'junit', version: '4.13', transitive: false
32+
testImplementation group: 'junit', name: 'junit', version: '4.13.1', transitive: false
3333
testImplementation group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3', transitive: false
3434
}
3535

0 commit comments

Comments
 (0)