Skip to content

Commit 78749f8

Browse files
committed
Bump version 4.8.1
1 parent e2a0969 commit 78749f8

File tree

24 files changed

+34
-34
lines changed

24 files changed

+34
-34
lines changed

.github/workflows/app-oidc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
env:
1212
REGISTRY: ghcr.io
13-
TAG: 4.8.0
13+
TAG: 4.8.1
1414

1515
jobs:
1616
build:

.github/workflows/app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
env:
1212
REGISTRY: ghcr.io
13-
TAG: 4.8.0
13+
TAG: 4.8.1
1414

1515
jobs:
1616
build:

.github/workflows/docker-devmode.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
env:
1010
REGISTRY: ghcr.io
1111
IMAGE_NAME: ${{ github.repository }}-devmode
12-
TAG: 4.8.0
12+
TAG: 4.8.1
1313

1414
jobs:
1515
docker:

.github/workflows/vscode.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
branches: [ main ]
1010

1111
env:
12-
TAG: 4.8.0
12+
TAG: 4.8.1
1313

1414
jobs:
1515
build:

docs/VSCODE_HOWTO.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
* Run using CLI
1818
```shell
19-
jbang -Dcamel.jbang.version=4.8.0 camel@apache/camel run $INTEGRATION.yaml --max-messages=10 --logging-level=info
19+
jbang -Dcamel.jbang.version=4.8.1 camel@apache/camel run $INTEGRATION.yaml --max-messages=10 --logging-level=info
2020
```
2121

2222
## Export integration to Maven project
@@ -26,5 +26,5 @@
2626

2727
* Export using CLI
2828
```shell
29-
jbang -Dcamel.jbang.version=4.8.0 camel@apache/camel export --directory=export
29+
jbang -Dcamel.jbang.version=4.8.1 camel@apache/camel export --directory=export
3030
```

docs/install/karavan-docker/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44

55
karavan:
66
container_name: karavan
7-
image: ghcr.io/apache/camel-karavan:4.8.0
7+
image: ghcr.io/apache/camel-karavan:4.8.1
88
ports:
99
- "8080:8080"
1010
environment:

docs/install/karavan-kubernetes/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spec:
2222
- name: "KARAVAN_CAMEL_STATUS_INTERVAL"
2323
value: "3s"
2424
- name: "KARAVAN_DEVMODE_IMAGE"
25-
value: "ghcr.io/apache/camel-karavan-devmode:4.8.0"
25+
value: "ghcr.io/apache/camel-karavan-devmode:4.8.1"
2626
- name: "KARAVAN_GIT_REPOSITORY"
2727
valueFrom:
2828
secretKeyRef:
@@ -73,7 +73,7 @@ spec:
7373
fieldRef:
7474
apiVersion: ""
7575
fieldPath: "metadata.namespace"
76-
image: "ghcr.io/apache/camel-karavan:4.8.0"
76+
image: "ghcr.io/apache/camel-karavan:4.8.1"
7777
imagePullPolicy: "Always"
7878
name: "karavan"
7979
ports:

docs/install/karavan-kubernetes/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ commonLabels:
44
app: "karavan"
55
app.kubernetes.io/part-of: "karavan"
66
app.kubernetes.io/name: "karavan"
7-
app.kubernetes.io/version: "4.8.0"
7+
app.kubernetes.io/version: "4.8.1"
88
namespace: "karavan"
99
resources:
1010
- secret.yaml

karavan-app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<modelVersion>4.0.0</modelVersion>
2222
<groupId>org.apache.camel.karavan</groupId>
2323
<artifactId>karavan</artifactId>
24-
<version>4.8.0</version>
24+
<version>4.8.1</version>
2525

2626
<properties>
2727
<compiler-plugin.version>3.11.0</compiler-plugin.version>

karavan-app/src/main/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ LABEL "org.opencontainers.image.title"="karavan"
1919
LABEL "org.opencontainers.image.description"="Apache Camel Karavan"
2020
LABEL "org.opencontainers.image.url"="https://camel.apache.org"
2121
LABEL "org.opencontainers.image.licenses"="Apache 2.0"
22-
LABEL "org.opencontainers.image.version"="4.8.0"
22+
LABEL "org.opencontainers.image.version"="4.8.1"
2323
LABEL "org.apache.camel.karavan/type"="internal"
2424

2525
RUN mkdir /opt/app

0 commit comments

Comments
 (0)