Skip to content

Commit 77dd308

Browse files
committed
Set version to 1.3.26
- Corrected testProducer()
1 parent 497c07f commit 77dd308

7 files changed

Lines changed: 10 additions & 11 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ and bugreports to this GitHub repository.
1313
[![Join the chat at https://gitter.im/LibrePDF/OpenPDF](https://badges.gitter.im/LibrePDF/OpenPDF.svg)](https://gitter.im/LibrePDF/OpenPDF)
1414
[![Join the chat at https://gitter.im/LibrePDF/code_of_conduct](https://badges.gitter.im/LibrePDF/code_of_conduct.svg)](https://gitter.im/LibrePDF/code_of_conduct)
1515

16-
## OpenPDF version 1.3.25 released 2021-02-15 ##
16+
## OpenPDF version 1.3.26 released 2021-05-02 ##
1717

18-
Get version 1.3.25 here - https://github.com/LibrePDF/OpenPDF/releases/tag/1.3.25
18+
Get version 1.3.26 here - https://github.com/LibrePDF/OpenPDF/releases/tag/1.3.26
1919

2020
- [Previous releases](https://github.com/LibrePDF/OpenPDF/releases)
2121

@@ -28,7 +28,7 @@ Add this to your pom.xml file to use the latest version of OpenPDF:
2828
<dependency>
2929
<groupId>com.github.librepdf</groupId>
3030
<artifactId>openpdf</artifactId>
31-
<version>1.3.25</version>
31+
<version>1.3.26</version>
3232
</dependency>
3333
```
3434

openpdf-fonts-extra/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.github.librepdf</groupId>
77
<artifactId>openpdf-parent</artifactId>
8-
<version>1.3.26-SNAPSHOT</version>
8+
<version>1.3.26</version>
99
</parent>
1010

1111
<artifactId>openpdf-fonts-extra</artifactId>

openpdf/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.github.librepdf</groupId>
77
<artifactId>openpdf-parent</artifactId>
8-
<version>1.3.26-SNAPSHOT</version>
8+
<version>1.3.26</version>
99
</parent>
1010

1111
<artifactId>openpdf</artifactId>

openpdf/src/test/java/com/lowagie/text/pdf/metadata/CleanMetaDataTest.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ private HashMap<String, String> createCleanerMoreInfo() {
3636

3737
@Test
3838
public void testProducer() throws Exception {
39-
String PRODUCER = "OpenPDF 1.3.26-SNAPSHOT";
40-
4139
ByteArrayOutputStream baos = new ByteArrayOutputStream();
4240
Document document = new Document();
4341

@@ -47,7 +45,8 @@ public void testProducer() throws Exception {
4745
document.close();
4846

4947
try (PdfReader r = new PdfReader(baos.toByteArray())) {
50-
Assertions.assertEquals(PRODUCER, r.getInfo().get("Producer"));
48+
final String producer = r.getInfo().get("Producer");
49+
org.assertj.core.api.Assertions.assertThat(producer).startsWith("OpenPDF ");
5150
}
5251

5352
}

pdf-swing/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.github.librepdf</groupId>
77
<artifactId>openpdf-parent</artifactId>
8-
<version>1.3.26-SNAPSHOT</version>
8+
<version>1.3.26</version>
99
</parent>
1010

1111
<artifactId>pdf-swing</artifactId>

pdf-toolbox/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.github.librepdf</groupId>
77
<artifactId>openpdf-parent</artifactId>
8-
<version>1.3.26-SNAPSHOT</version>
8+
<version>1.3.26</version>
99
</parent>
1010

1111
<artifactId>pdf-toolbox</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.github.librepdf</groupId>
77
<artifactId>openpdf-parent</artifactId>
8-
<version>1.3.26-SNAPSHOT</version>
8+
<version>1.3.26</version>
99
<packaging>pom</packaging>
1010

1111
<!-- please run mvn tidy:pom once in a while -->

0 commit comments

Comments
 (0)