Skip to content

Commit 44d83c2

Browse files
committed
Set version to 2.2.5
1 parent 8f4433c commit 44d83c2

File tree

10 files changed

+14
-21
lines changed

10 files changed

+14
-21
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ and bugreports to this GitHub repository.
2121
![Java 24](https://img.shields.io/badge/Java-24-blue?logo=java&logoColor=yellow)
2222
[![Kotlin](https://img.shields.io/badge/Kotlin-Supported-7F52FF?logo=kotlin&logoColor=white)](https://github.com/LibrePDF/OpenPDF/tree/master/openpdf-kotlin)
2323

24-
## OpenPDF version 2.2.4 released 2025-07-01
24+
## OpenPDF version 2.2.5 released 2026-03-09
2525

26-
Get version 2.2.4 here: https://github.com/LibrePDF/OpenPDF/releases/tag/2.2.4
26+
Get version 2.2.5 here: https://github.com/LibrePDF/OpenPDF/releases/tag/2.2.5
2727

2828
### Other versions
2929

@@ -56,7 +56,7 @@ Add this to your pom.xml file to use the latest version of OpenPDF:
5656
<dependency>
5757
<groupId>com.github.librepdf</groupId>
5858
<artifactId>openpdf</artifactId>
59-
<version>2.2.4</version>
59+
<version>2.2.5</version>
6060
</dependency>
6161
```
6262

createRelease.sh

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ RC=$?
4949
if [ $RC -eq 0 ]
5050
then
5151
cat << EOD
52-
Staging Release seems to be created. Please review it at https://oss.sonatype.org/#stagingRepositories
53-
if everything seems fine, hit ENTER. Else break this script with Ctrl-C.
52+
Staging Release seems to be created. Please review it at https://central.sonatype.com/publishing
53+
if everything seems fine, publish from there. Else break this script with Ctrl-C.
5454
EOD
5555
read pause
5656
else
@@ -59,14 +59,7 @@ else
5959
exit
6060
fi
6161

62-
echo "#5. Deploy release."
63-
# Workaround for https://issues.sonatype.org/browse/OSSRH-66257
64-
export MAVEN_OPTS="
65-
--add-opens=java.base/java.util=ALL-UNNAMED
66-
--add-opens=java.base/java.lang.reflect=ALL-UNNAMED
67-
--add-opens=java.base/java.text=ALL-UNNAMED
68-
--add-opens=java.desktop/java.awt.font=ALL-UNNAMED"
69-
mvn nexus-staging:release
62+
echo "#5. Deploy release. is deprecated. Should be rewritten"
7063

7164
echo "#6. Finishing."
7265
echo " - set next SNAPSHOT to $NEW_VERSION"

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>2.2.5-SNAPSHOT</version>
8+
<version>2.2.5</version>
99
</parent>
1010

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

openpdf-html/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.github.librepdf</groupId>
99
<artifactId>openpdf-parent</artifactId>
10-
<version>2.2.5-SNAPSHOT</version>
10+
<version>2.2.5</version>
1111
</parent>
1212

1313
<artifactId>openpdf-html</artifactId>

openpdf-kotlin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.github.librepdf</groupId>
88
<artifactId>openpdf-parent</artifactId>
9-
<version>2.2.5-SNAPSHOT</version>
9+
<version>2.2.5</version>
1010
</parent>
1111

1212
<artifactId>openpdf-kotlin</artifactId>

openpdf-renderer/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>2.2.5-SNAPSHOT</version>
8+
<version>2.2.5</version>
99
</parent>
1010

1111
<artifactId>openpdf-renderer</artifactId>

openpdf/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.github.librepdf</groupId>
88
<artifactId>openpdf-parent</artifactId>
9-
<version>2.2.5-SNAPSHOT</version>
9+
<version>2.2.5</version>
1010
</parent>
1111

1212
<artifactId>openpdf</artifactId>

pdf-swing/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.github.librepdf</groupId>
88
<artifactId>openpdf-parent</artifactId>
9-
<version>2.2.5-SNAPSHOT</version>
9+
<version>2.2.5</version>
1010
</parent>
1111

1212
<artifactId>pdf-swing</artifactId>

pdf-toolbox/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.github.librepdf</groupId>
88
<artifactId>openpdf-parent</artifactId>
9-
<version>2.2.5-SNAPSHOT</version>
9+
<version>2.2.5</version>
1010
</parent>
1111

1212
<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>2.2.5-SNAPSHOT</version> <!-- artifact.version -->
8+
<version>2.2.5</version> <!-- artifact.version -->
99
<packaging>pom</packaging>
1010

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

0 commit comments

Comments
 (0)