Skip to content

Commit

Permalink
REL - v1.26
Browse files Browse the repository at this point in the history
- bumped minor version to 1.26
- updated maven dependencies
- updated readme
- updated parent version to 1.26.2
  • Loading branch information
MaximPlusov committed May 24, 2024
1 parent bd34ecb commit 814d3ae
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push-dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ jobs:
context: .
file: ./Dockerfile
push: true
tags: verapdf/rest:latest,verapdf/rest:v1.24.1
tags: verapdf/rest:latest,verapdf/rest:v1.26.1
labels: ${{ steps.meta.outputs.labels }}
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ FROM debian:bullseye-slim
# Set for additional arguments passed to the java run command, no default
ARG JAVA_OPTS
ENV JAVA_OPTS=$JAVA_OPTS
# Specify the veraPDF REST version if you want to (to be used in build automation), default is 1.25.1
# Specify the veraPDF REST version if you want to (to be used in build automation), default is 1.26.1
ARG VERAPDF_REST_VERSION
ENV VERAPDF_REST_VERSION=${VERAPDF_REST_VERSION:-1.25.1}
ENV VERAPDF_REST_VERSION=${VERAPDF_REST_VERSION:-1.26.1}

COPY --from=app-builder /usr/local/bin/dumb-init /usr/local/bin/dumb-init
RUN chmod +x /usr/local/bin/dumb-init
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile_dev
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ FROM debian:bullseye-slim
# Set for additional arguments passed to the java run command, no default
ARG JAVA_OPTS
ENV JAVA_OPTS=$JAVA_OPTS
# Specify the veraPDF REST version if you want to (to be used in build automation), default is 1.25.1
# Specify the veraPDF REST version if you want to (to be used in build automation), default is 1.26.1
ARG VERAPDF_REST_VERSION
ENV VERAPDF_REST_VERSION=${VERAPDF_REST_VERSION:-1.25.1}
ENV VERAPDF_REST_VERSION=${VERAPDF_REST_VERSION:-1.26.1}

COPY --from=dev-builder /usr/local/bin/dumb-init /usr/local/bin/dumb-init
RUN chmod +x /usr/local/bin/dumb-init
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ branch for dev version, and then build the Maven project:

To start up the server:

java -jar target/verapdf-rest-1.25.1.jar server server.yml
java -jar target/verapdf-rest-1.26.1.jar server server.yml

Go to [localhost:8080/api/info](http://localhost:8080/api/info) to see if the server is running, you should
see something like:
Expand Down
2 changes: 1 addition & 1 deletion charts/verapdf-rest/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ version: 0.1.0
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "v1.24.1"
appVersion: "v1.26.1"
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<parent>
<groupId>org.verapdf</groupId>
<artifactId>verapdf-parent</artifactId>
<version>1.25.2</version>
<version>1.26.2</version>
</parent>

<artifactId>verapdf-rest</artifactId>
<version>1.25.1</version>
<version>1.26.1</version>

<name>veraPDF RESTful web services</name>
<description>JAX-RS web services and client for veraPDF library</description>
Expand Down Expand Up @@ -44,7 +44,7 @@
<properties>
<dropwizard.version>2.1.7</dropwizard.version>
<fasterxml.version>2.10.0</fasterxml.version>
<verapdf.validation.version>[1.25.0,1.26.0-RC)</verapdf.validation.version>
<verapdf.validation.version>[1.26.0,1.27.0)</verapdf.validation.version>
</properties>

<build>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/verapdf/rest/resources/ApiResource.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
*/
@Path("/api")
@Tag(name = "veraPDF")
@OpenAPIDefinition(info = @Info(title = "veraPDF API", description = "A REST service API for veraPDF", version = "V1.25.1", license = @License(name = "Apache 2.0", url = "https://www.apache.org/licenses/LICENSE-2.0")), servers = {
@OpenAPIDefinition(info = @Info(title = "veraPDF API", description = "A REST service API for veraPDF", version = "V1.26.1", license = @License(name = "Apache 2.0", url = "https://www.apache.org/licenses/LICENSE-2.0")), servers = {
@Server(url = "https://demo.verapdf.org", description = "default"),
@Server(url = "https://dev.verapdf-rest.duallab.com", description = "dev"),
@Server(url = "http://localhost:8080", description = "local") })
Expand Down

0 comments on commit 814d3ae

Please sign in to comment.