From 793fc52bfd112cbec4c411ce69580aaa735f66e2 Mon Sep 17 00:00:00 2001 From: Andrei Solntsev Date: Thu, 21 Jan 2021 22:38:40 +0200 Subject: [PATCH] release 1.6.0 --- CHANGELOG.txt | 13 +++++++------ build.gradle | 6 +++--- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index cb41b66..08e2baf 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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. diff --git a/build.gradle b/build.gradle index 9a3ed9f..0cd6b2c 100644 --- a/build.gradle +++ b/build.gradle @@ -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} @@ -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 }