Skip to content

Commit

Permalink
Release 6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
oboehm committed Feb 11, 2023
1 parent 14d735f commit edfa246
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ genauso wie an [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
Aus Gründen der Übersichtlichkeit sind bei älteren Versionen die einzelnen Patch-Versionen nicht extra aufgeführt, sondern in der Minor-Version.


## [Unreleased]
## [6.5.0] - 2023-02-11

### Changed

- service-Modul auf Spring-Boot 2.6, Thymeleaf 3 uns OpenApi 3 angehoben
- service-Modul auf Spring-Boot 2.6, Thymeleaf 3 und OpenApi 3 angehoben


## [6.4.2] - 2023-01-22
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Packaging the gdv-xport-service.war
FROM maven:3.6.3-openjdk-8 AS build-env
FROM maven:3.6.3-openjdk-11-slim AS build-env
COPY . .
RUN mvn -DskipTests package

# Starting the service
FROM openjdk:8-alpine
FROM openjdk:17-alpine
WORKDIR /usr/src/myapp
COPY --from=build-env /service/target/gdv-xport-service.war /usr/src/myapp/app.war
EXPOSE 2517
Expand Down
8 changes: 4 additions & 4 deletions doc/delivery.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ Kopiere `/tmp/gdv-xport` anschließend auf die Web-Seite.

|D-Day
|Label setzen
|`git tag gdv-xport-4.1.0` (lokal)
`git push [email protected]:oboehm/gdv.xport.git tag gdv-xport-4.1.0` (remote)
|`git tag gdv-xport-6.5.0` (lokal)
`git push [email protected]:oboehm/gdv.xport.git tag gdv-xport-6.5.0` (remote)

|nachher
|Tickets schließen
Expand Down Expand Up @@ -88,8 +88,8 @@ Um ein Docker-Image auf https://hub.docker.com/r/oboehm/gdv.xport zu bringen, si

* Docker-Image bauen: `docker build -t gdv.xport -f Dockerfile .`
* Image-ID ermitteln: `docker images`
* Docker-Image taggen: `docker tag <Image-ID> oboehm/gdv.xport:6.4.0`
* Docker-Image pushen: `docker push oboehm/gdv.xport:6.4.0`
* Docker-Image taggen: `docker tag <Image-ID> oboehm/gdv.xport:6.5.0`
* Docker-Image pushen: `docker push oboehm/gdv.xport:6.5.0`



Expand Down
2 changes: 1 addition & 1 deletion lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.github.oboehm</groupId>
<artifactId>gdv-xport</artifactId>
<version>6.4.3-SNAPSHOT</version>
<version>6.5.0</version>
</parent>

<artifactId>gdv-xport-lib</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<groupId>com.github.oboehm</groupId>
<artifactId>gdv-xport</artifactId>
<packaging>pom</packaging>
<version>6.4.3-SNAPSHOT</version>
<version>6.5.0</version>
<name>GDV.XPort</name>

<modules>
Expand Down
2 changes: 1 addition & 1 deletion service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.oboehm</groupId>
<artifactId>gdv-xport</artifactId>
<version>6.4.3-SNAPSHOT</version>
<version>6.5.0</version>
</parent>

<artifactId>gdv-xport-service</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion src/script/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# set up some constants
URL=https://oss.sonatype.org/service/local/staging/deploy/maven2/
VERSION=6.4.2
VERSION=6.5.0
options="gpg:sign-and-deploy-file -Durl=$URL -DrepositoryId=sonatype-nexus-staging"

# passphrase is needed for signing
Expand Down

0 comments on commit edfa246

Please sign in to comment.