You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2024/03/28 11:23:20 UTC

(camel-kamelets-examples) 02/02: Bump for next version

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-kamelets-examples.git

commit 184b5dc1d343e0efc9022339f4b0af72e7cb757b
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Mar 28 12:23:11 2024 +0100

    Bump for next version
---
 jbang/azure-servicebus/README.adoc                                  | 4 ++--
 jbang/kafka-aws-bedrock/README.adoc                                 | 4 ++--
 kamelet-main/custom/pom.xml                                         | 2 +-
 kamelet-main/pom.xml                                                | 6 +++---
 kamelet-main/scan-download/pom.xml                                  | 2 +-
 .../src/main/resources/kamelets/custom-beer-source.kamelet.yaml     | 2 +-
 kamelet-main/scan/pom.xml                                           | 2 +-
 kamelet-main/slack-source/pom.xml                                   | 2 +-
 8 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/jbang/azure-servicebus/README.adoc b/jbang/azure-servicebus/README.adoc
index 3c1251c..84423a1 100644
--- a/jbang/azure-servicebus/README.adoc
+++ b/jbang/azure-servicebus/README.adoc
@@ -64,7 +64,7 @@ Then you can run this producer example using:
 
 [source,sh]
 ----
-$ jbang -Dcamel.jbang.version=4.5.0-SNAPSHOT camel run timer-to-azure-servicebus.camel.yaml
+$ jbang -Dcamel.jbang.version=4.6.0-SNAPSHOT camel run timer-to-azure-servicebus.camel.yaml
 ----
 
 === How to run the consumer
@@ -73,7 +73,7 @@ Then you can run this consumer example using:
 
 [source,sh]
 ----
-$ jbang -Dcamel.jbang.version=4.5.0-SNAPSHOT camel run azure-servicebus-to-log.camel.yaml
+$ jbang -Dcamel.jbang.version=4.6.0-SNAPSHOT camel run azure-servicebus-to-log.camel.yaml
 ----
 
 
diff --git a/jbang/kafka-aws-bedrock/README.adoc b/jbang/kafka-aws-bedrock/README.adoc
index 670647c..c85687f 100644
--- a/jbang/kafka-aws-bedrock/README.adoc
+++ b/jbang/kafka-aws-bedrock/README.adoc
@@ -63,7 +63,7 @@ Then you can run this example using:
 
 [source,sh]
 ----
-$ jbang -Dcamel.jbang.version=4.5.0-SNAPSHOT camel@apache/camel run --local-kamelet-dir=<local_path_to_kamelets> kafka-aws-bedrock.camel.yaml
+$ jbang -Dcamel.jbang.version=4.6.0-SNAPSHOT camel@apache/camel run --local-kamelet-dir=<local_path_to_kamelets> kafka-aws-bedrock.camel.yaml
 ----
 
 
@@ -75,7 +75,7 @@ In the log you should see the consumer:
 ----
 2024-03-07 06:50:53.517  INFO 11498 --- [           main] el.impl.engine.AbstractCamelContext : Routes startup (total:1 started:1 kamelets:2)
 2024-03-07 06:50:53.517  INFO 11498 --- [           main] el.impl.engine.AbstractCamelContext :     Started route1 (kamelet://kafka-not-secured-source)
-2024-03-07 06:50:53.517  INFO 11498 --- [           main] el.impl.engine.AbstractCamelContext : Apache Camel 4.5.0-SNAPSHOT (kafka-aws-bedrock) started in 817ms (build:0ms init:0ms start:817ms)
+2024-03-07 06:50:53.517  INFO 11498 --- [           main] el.impl.engine.AbstractCamelContext : Apache Camel 4.6.0-SNAPSHOT (kafka-aws-bedrock) started in 817ms (build:0ms init:0ms start:817ms)
 2024-03-07 06:50:53.621  INFO 11498 --- [[bedrock-topic]] he.kafka.common.utils.AppInfoParser : Kafka version: 3.6.1
 2024-03-07 06:50:53.622  INFO 11498 --- [[bedrock-topic]] he.kafka.common.utils.AppInfoParser : Kafka commitId: 5e3c2b738d253ff5
 2024-03-07 06:50:53.622  INFO 11498 --- [[bedrock-topic]] he.kafka.common.utils.AppInfoParser : Kafka startTimeMs: 1709790653615
diff --git a/kamelet-main/custom/pom.xml b/kamelet-main/custom/pom.xml
index 6613e2a..5de5dfb 100644
--- a/kamelet-main/custom/pom.xml
+++ b/kamelet-main/custom/pom.xml
@@ -25,7 +25,7 @@
     <parent>
         <groupId>org.apache.camel.examples</groupId>
         <artifactId>camel-kamelet-main-examples</artifactId>
-        <version>4.5.0-SNAPSHOT</version>
+        <version>4.6.0-SNAPSHOT</version>
     </parent>
 
     <artifactId>custom</artifactId>
diff --git a/kamelet-main/pom.xml b/kamelet-main/pom.xml
index f52e03b..4854eb3 100644
--- a/kamelet-main/pom.xml
+++ b/kamelet-main/pom.xml
@@ -23,19 +23,19 @@
     <parent>
         <groupId>org.apache.camel</groupId>
         <artifactId>camel-dependencies</artifactId>
-        <version>4.5.0-SNAPSHOT</version>
+        <version>4.6.0-SNAPSHOT</version>
     </parent>
 
     <groupId>org.apache.camel.examples</groupId>
     <artifactId>camel-kamelet-main-examples</artifactId>
-    <version>4.5.0-SNAPSHOT</version>
+    <version>4.6.0-SNAPSHOT</version>
     <packaging>pom</packaging>
 
     <name>Kamelet Main Examples</name>
     <description>Kamelet Main Examples</description>
 
     <properties>
-       <camel.version>4.5.0-SNAPSHOT</camel.version>
+       <camel.version>4.6.0-SNAPSHOT</camel.version>
     </properties>
 
     <modules>
diff --git a/kamelet-main/scan-download/pom.xml b/kamelet-main/scan-download/pom.xml
index 0cbd812..1bf497f 100644
--- a/kamelet-main/scan-download/pom.xml
+++ b/kamelet-main/scan-download/pom.xml
@@ -25,7 +25,7 @@
     <parent>
         <groupId>org.apache.camel.examples</groupId>
         <artifactId>camel-kamelet-main-examples</artifactId>
-        <version>4.5.0-SNAPSHOT</version>
+        <version>4.6.0-SNAPSHOT</version>
     </parent>
 
     <artifactId>scan-download</artifactId>
diff --git a/kamelet-main/scan-download/src/main/resources/kamelets/custom-beer-source.kamelet.yaml b/kamelet-main/scan-download/src/main/resources/kamelets/custom-beer-source.kamelet.yaml
index 44d732d..bc68ec1 100644
--- a/kamelet-main/scan-download/src/main/resources/kamelets/custom-beer-source.kamelet.yaml
+++ b/kamelet-main/scan-download/src/main/resources/kamelets/custom-beer-source.kamelet.yaml
@@ -28,7 +28,7 @@ spec:
     - "camel:timer"
     - "camel:http"
     - "camel:kamelet"
-    - "mvn:org.apache.camel.examples:custom:4.5.0-SNAPSHOT"
+    - "mvn:org.apache.camel.examples:custom:4.6.0-SNAPSHOT"
   template:
     from:
       uri: "timer:beer"
diff --git a/kamelet-main/scan/pom.xml b/kamelet-main/scan/pom.xml
index 03be2d4..25a2a40 100644
--- a/kamelet-main/scan/pom.xml
+++ b/kamelet-main/scan/pom.xml
@@ -25,7 +25,7 @@
     <parent>
         <groupId>org.apache.camel.examples</groupId>
         <artifactId>camel-kamelet-main-examples</artifactId>
-        <version>4.5.0-SNAPSHOT</version>
+        <version>4.6.0-SNAPSHOT</version>
     </parent>
 
     <artifactId>scan</artifactId>
diff --git a/kamelet-main/slack-source/pom.xml b/kamelet-main/slack-source/pom.xml
index 0ed6d73..5ef94d2 100644
--- a/kamelet-main/slack-source/pom.xml
+++ b/kamelet-main/slack-source/pom.xml
@@ -25,7 +25,7 @@
     <parent>
         <groupId>org.apache.camel.examples</groupId>
         <artifactId>camel-kamelet-main-examples</artifactId>
-        <version>4.5.0-SNAPSHOT</version>
+        <version>4.6.0-SNAPSHOT</version>
     </parent>
 
     <artifactId>slack-source</artifactId>