Skip to content

Commit

Permalink
chore(plugin): switch from v1alpha1 to v1
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaferraro authored and lburgazzoli committed Dec 18, 2019
1 parent ebd80b8 commit 839b55e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public void execute() throws MojoExecutionException, MojoFailureException {
});

//
// apiVersion: camel.apache.org/v1alpha1
// apiVersion: camel.apache.org/v1
// kind: CamelCatalog
// metadata:
// name: catalog-x.y.z-a.b.c
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
public interface CamelCatalog {
@Value.Default
default String getApiVersion() {
return "camel.apache.org/v1alpha1";
return "camel.apache.org/v1";
}

@Value.Default
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
public interface TypeMeta {
@Value.Default
default String getApiVersion() {
return "camel.apache.org/v1alpha1";
return "camel.apache.org/v1";
}

@Value.Default
Expand Down

0 comments on commit 839b55e

Please sign in to comment.