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 2023/12/11 12:41:24 UTC

(camel) branch main updated: camel-jbang - Lets show only v4 versions by default.

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.git


The following commit(s) were added to refs/heads/main by this push:
     new 72a757d54fe camel-jbang - Lets show only v4 versions by default.
72a757d54fe is described below

commit 72a757d54fe7b13ae53d04b2adde90a49babaf38
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Dec 11 13:41:11 2023 +0100

    camel-jbang - Lets show only v4 versions by default.
---
 .../org/apache/camel/dsl/jbang/core/commands/version/VersionList.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/version/VersionList.java b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/version/VersionList.java
index 5b91b9fa2e5..89dd45d6874 100644
--- a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/version/VersionList.java
+++ b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/version/VersionList.java
@@ -63,8 +63,8 @@ public class VersionList extends CamelCommand {
     String runtime;
 
     @CommandLine.Option(names = { "--from-version" },
-                        description = "Filter by Camel version (inclusive)", defaultValue = "3.14.0")
-    String fromVersion = "3.14.0";
+                        description = "Filter by Camel version (inclusive)", defaultValue = "4.0.0")
+    String fromVersion = "4.0.0";
 
     @CommandLine.Option(names = { "--to-version" },
                         description = "Filter by Camel version (exclusive)")