diff --git a/docs/configure-helm.adoc b/docs/configure-helm.adoc index 34f93755..9d3204b3 100644 --- a/docs/configure-helm.adoc +++ b/docs/configure-helm.adoc @@ -135,7 +135,7 @@ The following example shows how the download can be configured in the build scri helm { downloadClient { enabled = true - version = '3.3.4' + version = '3.4.1' } } ---- @@ -146,7 +146,7 @@ helm { helm { downloadClient { enabled.set(true) - version.set("3.3.4") + version.set("3.4.1") } } ---- @@ -158,7 +158,7 @@ The following example shows how the download can be configured using the gradle. .gradle.properties ---- helm.client.download.enabled=true -helm.client.download.version=3.3.4 +helm.client.download.version=3.4.1 ---- @@ -176,7 +176,7 @@ The following properties control the download of the Helm client: | `version` | `helm.client.download.version` | The version of the Helm client to be downloaded. -| The latest version of Helm available at the time the plugin is published (currently `3.3.4`) +| The latest version of Helm available at the time the plugin is published (currently `3.4.1`) | `destinationDir` | diff --git a/src/main/kotlin/org/unbrokendome/gradle/plugins/helm/dsl/HelmDownloadClient.kt b/src/main/kotlin/org/unbrokendome/gradle/plugins/helm/dsl/HelmDownloadClient.kt index b9c43941..ab36f48d 100644 --- a/src/main/kotlin/org/unbrokendome/gradle/plugins/helm/dsl/HelmDownloadClient.kt +++ b/src/main/kotlin/org/unbrokendome/gradle/plugins/helm/dsl/HelmDownloadClient.kt @@ -31,7 +31,7 @@ interface HelmDownloadClient { * the plugin is released. */ @JvmStatic - val DEFAULT_HELM_CLIENT_VERSION = "3.3.4" + val DEFAULT_HELM_CLIENT_VERSION = "3.4.1" internal const val DEFAULT_HELM_CLIENT_GROUP = "sh.helm" @@ -48,7 +48,7 @@ interface HelmDownloadClient { /** * The version of the client to be downloaded. * - * Defaults to the latest version available at the time of the plugin release (currently `3.3.4`). + * Defaults to the latest version available at the time of the plugin release (currently `3.4.1`). * * @see DEFAULT_HELM_CLIENT_VERSION */