Skip to content

Commit 1506aa0

Browse files
committed
Release 0.27.0
1 parent a6c2cfe commit 1506aa0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Taskfile.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ tasks:
1515

1616
mavenSetVersion:
1717
preconditions:
18-
- sh: '[ ! -z $RELEASE_VERSION ]'
18+
- sh: "[ '{{.RELEASE_VERSION}}' != '<no value>' ]"
1919
msg: "RELEASE_VERSION must be defined"
2020
cmds:
21-
- './mvnw versions:set -DnewVersion={{RELEASE_VERSION}}'
21+
- './mvnw versions:set -DnewVersion={{.RELEASE_VERSION}}'
2222

2323
dockerBuildImages:
2424
cmds:
2525
- 'docker buildx bake --allow=fs.write=/tmp kroki companion-images {{if .BUILD_MULTIARCH}}--set "*.platform=linux/arm64,linux/amd64"{{end}} {{if .CACHE_FROM}}--set "*.cache-from={{.CACHE_FROM}}"{{end}} {{if .CACHE_TO}}--set "*.cache-to={{.CACHE_TO}}"{{end}}'
2626

2727
dockerPublishImages:
2828
preconditions:
29-
- sh: '[ ! -z $RELEASE_VERSION ]'
29+
- sh: "[ '{{.RELEASE_VERSION}}' != '<no value>' ]"
3030
msg: "RELEASE_VERSION must be defined"
3131
cmds:
3232
- 'docker buildx bake --allow=fs.write=/tmp -f docker-bake.hcl -f docker-bake-release.hcl kroki companion-images --push --set "*.platform=linux/arm64,linux/amd64"'

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>kroki</artifactId>
66
<name>kroki</name>
77
<packaging>pom</packaging>
8-
<version>0.26.0</version>
8+
<version>0.27.0</version>
99
<properties>
1010
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1111
</properties>

server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>kroki</artifactId>
77
<groupId>io.kroki</groupId>
8-
<version>0.26.0</version>
8+
<version>0.27.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

0 commit comments

Comments
 (0)