Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 6.9 because of new features. #307

Merged
merged 1 commit into from
Jul 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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