Skip to content

Commit 29316cf

Browse files
committed
REL - Release v1.30
- bumped minor version to 1.30 - updated Maven dependencies - changed test files branch to rel/1.30 - updated installer - updated veraPDFPDFAConformanceCheckerGUI.pdf
1 parent 0aaef59 commit 29316cf

10 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/push-dockerhub.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ name: Publish Docker image
2424
on:
2525
push:
2626
tags:
27-
- 'v1.28.*'
28-
- '!v1.28.0-RC*'
27+
- 'v1.30.*'
28+
- '!v1.30.0-RC*'
2929

3030
jobs:
3131
push_to_registry:
@@ -60,7 +60,7 @@ jobs:
6060
context: .
6161
file: ./Dockerfile
6262
build-args: |
63-
VERAPDF_VERSION=1.28
63+
VERAPDF_VERSION=1.30
6464
VERAPDF_MINOR_VERSION=${{ steps.version.outputs.version }}
6565
push: true
6666
tags: verapdf/cli:latest,verapdf/cli:${{ github.ref_name }}

.github/workflows/trigger-regression-tests-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@ jobs:
4747
owner: 'veraPDF',
4848
repo: 'verapdf-integration-tests',
4949
workflow_id: 'run-pdfa-tests-workflow.yml',
50-
ref: 'rc/1.30'
50+
ref: 'rel/1.30'
5151
})

README.md

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

33
*Command line and GUI industry supported PDF/A and PDF/UA Validation*
44

5-
[![Build Status](https://jenkins.openpreservation.org/job/veraPDF/job/1.30rc/job/apps/badge/icon)](https://jenkins.openpreservation.org/job/veraPDF/job/1.30rc/job/apps/ "OPF Jenkins")
5+
[![Build Status](https://jenkins.openpreservation.org/job/veraPDF/job/1.30/job/apps/badge/icon)](https://jenkins.openpreservation.org/job/veraPDF/job/1.30/job/apps/ "OPF Jenkins")
66
[![Maven Central](https://img.shields.io/maven-central/v/org.verapdf/verapdf-apps.svg)](https://repo1.maven.org/maven2/org/verapdf/verapdf-apps/ "Maven central")
77
[![CodeCov Coverage](https://img.shields.io/codecov/c/github/veraPDF/veraPDF-apps.svg)](https://codecov.io/gh/veraPDF/veraPDF-apps/ "CodeCov coverage")
88
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/ac55527c6ac04c3ab57c932c85c9be4d)](https://app.codacy.com/gh/veraPDF/veraPDF-apps/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade "Codacy grade")

apps/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>org.verapdf</groupId>
3030
<artifactId>verapdf-apps</artifactId>
31-
<version>1.30.0-RC1</version>
31+
<version>1.30.0</version>
3232
</parent>
3333

3434
<groupId>org.verapdf.apps</groupId>

cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>org.verapdf</groupId>
3030
<artifactId>verapdf-apps</artifactId>
31-
<version>1.30.0-RC1</version>
31+
<version>1.30.0</version>
3232
</parent>
3333

3434
<groupId>org.verapdf.apps</groupId>

gui/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>org.verapdf</groupId>
3030
<artifactId>verapdf-apps</artifactId>
31-
<version>1.30.0-RC1</version>
31+
<version>1.30.0</version>
3232
</parent>
3333

3434
<groupId>org.verapdf.apps</groupId>

installer/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<parent>
2727
<groupId>org.verapdf</groupId>
2828
<artifactId>verapdf-apps</artifactId>
29-
<version>1.30.0-RC1</version>
29+
<version>1.30.0</version>
3030
</parent>
3131

3232
<groupId>org.verapdf.apps</groupId>
@@ -236,7 +236,7 @@
236236
<goal>wget</goal>
237237
</goals>
238238
<configuration>
239-
<url>http://software.verapdf.org/dev/veraPDF-sample-plugin-pack-rc.zip</url>
239+
<url>http://software.verapdf.org/dev/veraPDF-sample-plugin-pack-rel.zip</url>
240240
<unpack>false</unpack>
241241
<skipCache>true</skipCache>
242242
<outputDirectory>${project.build.directory}/staging/plugins</outputDirectory>

installer/src/main/izpack/install.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@
153153
<include name="plugins/**"/>
154154
<include name="config/**"/>
155155
</updatecheck>
156-
<file targetdir="$INSTALL_PATH" src="plugins/veraPDF-sample-plugin-pack-rc.zip" unpack="true"/>
156+
<file targetdir="$INSTALL_PATH" src="plugins/veraPDF-sample-plugin-pack-rel.zip" unpack="true"/>
157157
<parsable targetfile="$INSTALL_PATH/config/plugins.xml" type="xml"/>
158158
</pack>
159159
</packs>

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
<groupId>org.verapdf</groupId>
3535
<artifactId>verapdf-apps</artifactId>
36-
<version>1.30.0-RC1</version>
36+
<version>1.30.0</version>
3737
<packaging>pom</packaging>
3838

3939
<name>veraPDF Validation Applications</name>
@@ -72,8 +72,8 @@
7272
<properties>
7373
<sonar.jacoco.itReportPath>${project.basedir}/../target/jacoco-it.exec</sonar.jacoco.itReportPath>
7474
<sonar.language>java</sonar.language>
75-
<verapdf.library.version>[1.30.0-RC,1.31.0)</verapdf.library.version>
76-
<verapdf.validation.version>[1.30.0-RC,1.31.0)</verapdf.validation.version>
75+
<verapdf.library.version>[1.30.0,1.31.0)</verapdf.library.version>
76+
<verapdf.validation.version>[1.30.0,1.31.0)</verapdf.validation.version>
7777
</properties>
7878

7979
<dependencyManagement>
355 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)