Skip to content

Commit

Permalink
Bump version to 6.9 because of new features. (#307)
Browse files Browse the repository at this point in the history
  • Loading branch information
sschnabe authored Jul 31, 2023
1 parent 8de9b94 commit c6ea0cf
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Add following dependency to your pom.xml:
<dependency>
<groupId>io.kokuwa.maven</groupId>
<artifactId>helm-maven-plugin</artifactId>
<version>6.6.0</version>
<version>6.9.0</version>
</dependency>
```

Expand All @@ -49,7 +49,7 @@ The default setting is to construct the Helm download URL based upon the detecte
<plugin>
<groupId>io.kokuwa.maven</groupId>
<artifactId>helm-maven-plugin</artifactId>
<version>6.6.0</version>
<version>6.9.0</version>
<configuration>
<chartDirectory>${project.basedir}</chartDirectory>
<chartVersion>${project.version}</chartVersion>
Expand All @@ -70,7 +70,7 @@ If you leave `helmVersion` and `helmDownloadUrl` empty the plugin will determine
<plugin>
<groupId>io.kokuwa.maven</groupId>
<artifactId>helm-maven-plugin</artifactId>
<version>6.6.0</version>
<version>6.9.0</version>
<configuration>
<chartDirectory>${project.basedir}</chartDirectory>
<chartVersion>${project.version}</chartVersion>
Expand All @@ -94,7 +94,7 @@ When `useLocalHelmBinary` is enabled, the plugin by default will search for the
<plugin>
<groupId>io.kokuwa.maven</groupId>
<artifactId>helm-maven-plugin</artifactId>
<version>6.6.0</version>
<version>6.9.0</version>
<configuration>
<chartDirectory>${project.basedir}</chartDirectory>
<chartVersion>${project.version}</chartVersion>
Expand All @@ -117,7 +117,7 @@ and disables the auto-detection feature:
<plugin>
<groupId>io.kokuwa.maven</groupId>
<artifactId>helm-maven-plugin</artifactId>
<version>6.6.0</version>
<version>6.9.0</version>
<configuration>
<chartDirectory>${project.basedir}</chartDirectory>
<chartVersion>${project.version}</chartVersion>
Expand All @@ -141,7 +141,7 @@ and disables the auto-detection feature:
<plugin>
<groupId>io.kokuwa.maven</groupId>
<artifactId>helm-maven-plugin</artifactId>
<version>6.6.0</version>
<version>6.9.0</version>
<configuration>
<chartDirectory>${project.basedir}</chartDirectory>
<chartVersion>${project.version}</chartVersion>
Expand Down Expand Up @@ -173,7 +173,7 @@ and disables the auto-detection feature:
<plugin>
<groupId>io.kokuwa.maven</groupId>
<artifactId>helm-maven-plugin</artifactId>
<version>6.6.0</version>
<version>6.9.0</version>
<configuration>
<chartDirectory>${project.basedir}</chartDirectory>
<chartVersion>${project.version}</chartVersion>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<groupId>io.kokuwa.maven</groupId>
<artifactId>maven-parent</artifactId>
<version>0.6.9</version>
<version>0.6.10</version>
<relativePath />
</parent>

<artifactId>helm-maven-plugin</artifactId>
<version>6.8.1-SNAPSHOT</version>
<version>6.9.0-SNAPSHOT</version>
<packaging>maven-plugin</packaging>

<name>Helm Maven Plugin</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/kokuwa/maven/helm/InitMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public class InitMojo extends AbstractHelmMojo {
* Controls whether a download should occur when local helm binary is not found/verified.
* This property has no effect unless "helm.useLocalHelmBinary" is set to <code>true</code>.
*
* @since 6.8.1
* @since 6.9.0
*/
@Parameter(property = "helm.init.fallbackBinaryDownload", defaultValue = "false")
private boolean fallbackBinaryDownload;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/kokuwa/maven/helm/UploadMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public class UploadMojo extends AbstractHelmMojo {
/**
* Skip tls certificate checks for the chart upload.
*
* @since 6.8.1
* @since 6.9.0
*/
@Parameter(property = "helm.upload.insecure", defaultValue = "false")
private boolean insecure;
Expand Down

0 comments on commit c6ea0cf

Please sign in to comment.