Skip to content

Commit

Permalink
Bump up version number to 5.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
michel-kraemer committed Sep 28, 2022
1 parent 7d6de83 commit 1b5d697
Show file tree
Hide file tree
Showing 30 changed files with 32 additions and 32 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ First, apply the plugin configuration:

```groovy
plugins {
id "de.undercouch.download" version "5.2.0"
id "de.undercouch.download" version "5.2.1"
}
```

Expand Down Expand Up @@ -176,8 +176,8 @@ plugin with Gradle's built-in support for ZIP files:

```groovy
task downloadZipFile(type: Download) {
src 'https://github.com/michel-kraemer/gradle-download-task/archive/refs/tags/5.2.0.zip'
dest new File(buildDir, '5.2.0.zip')
src 'https://github.com/michel-kraemer/gradle-download-task/archive/refs/tags/5.2.1.zip'
dest new File(buildDir, '5.2.1.zip')
}
task downloadAndUnzipFile(dependsOn: downloadZipFile, type: Copy) {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ apply from: "gradle/integrationTest.gradle"
import com.github.jengelman.gradle.plugins.shadow.tasks.ConfigureShadowRelocation

group = 'de.undercouch'
version = '5.2.0'
version = '5.2.1'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'

Expand Down
2 changes: 1 addition & 1 deletion examples/groovy/custom-header/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id 'de.undercouch.download' version '5.2.0'
id 'de.undercouch.download' version '5.2.1'
}

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/groovy/directory-github/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id 'de.undercouch.download' version '5.2.0'
id 'de.undercouch.download' version '5.2.1'
}

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/groovy/directory/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ buildscript {
* Include the gradle-download-task plugin
*/
plugins {
id 'de.undercouch.download' version '5.2.0'
id 'de.undercouch.download' version '5.2.1'
}

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/groovy/etag/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id 'de.undercouch.download' version '5.2.0'
id 'de.undercouch.download' version '5.2.1'
}

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/groovy/lazy-src-and-dest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id 'de.undercouch.download' version '5.2.0'
id 'de.undercouch.download' version '5.2.1'
}

ext {
Expand Down
2 changes: 1 addition & 1 deletion examples/groovy/mirrors/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id 'de.undercouch.download' version '5.2.0'
id 'de.undercouch.download' version '5.2.1'
}

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/groovy/multiple-files-rename/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id 'de.undercouch.download' version '5.2.0'
id 'de.undercouch.download' version '5.2.1'
}

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/groovy/multiple-files/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id 'de.undercouch.download' version '5.2.0'
id 'de.undercouch.download' version '5.2.1'
}

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/groovy/simple-extension/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id 'de.undercouch.download' version '5.2.0'
id 'de.undercouch.download' version '5.2.1'
}

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/groovy/simple/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id 'de.undercouch.download' version '5.2.0'
id 'de.undercouch.download' version '5.2.1'
}

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/groovy/temp-rename/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id 'de.undercouch.download' version '5.2.0'
id 'de.undercouch.download' version '5.2.1'
}

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/groovy/unzip/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id 'de.undercouch.download' version '5.2.0'
id 'de.undercouch.download' version '5.2.1'
}

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/groovy/verify-extension/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id 'de.undercouch.download' version '5.2.0'
id 'de.undercouch.download' version '5.2.1'
}

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/groovy/verify/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id 'de.undercouch.download' version '5.2.0'
id 'de.undercouch.download' version '5.2.1'
}

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/custom-header/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id("de.undercouch.download") version "5.2.0"
id("de.undercouch.download") version "5.2.1"
}

import de.undercouch.gradle.tasks.download.Download
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/directory-github/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id("de.undercouch.download") version "5.2.0"
id("de.undercouch.download") version "5.2.1"
}

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/directory/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ buildscript {
* Include the gradle-download-task plugin
*/
plugins {
id("de.undercouch.download") version "5.2.0"
id("de.undercouch.download") version "5.2.1"
}

import de.undercouch.gradle.tasks.download.Download
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/etag/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id("de.undercouch.download") version "5.2.0"
id("de.undercouch.download") version "5.2.1"
}

import de.undercouch.gradle.tasks.download.Download
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/lazy-src-and-dest/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id("de.undercouch.download") version "5.2.0"
id("de.undercouch.download") version "5.2.1"
}

import java.nio.file.Files
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/mirrors/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id("de.undercouch.download") version "5.2.0"
id("de.undercouch.download") version "5.2.1"
}

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/multiple-files-rename/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id("de.undercouch.download") version "5.2.0"
id("de.undercouch.download") version "5.2.1"
}

import de.undercouch.gradle.tasks.download.Download
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/multiple-files/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id("de.undercouch.download") version "5.2.0"
id("de.undercouch.download") version "5.2.1"
}

import de.undercouch.gradle.tasks.download.Download
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/simple-extension/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id("de.undercouch.download") version "5.2.0"
id("de.undercouch.download") version "5.2.1"
}

import de.undercouch.gradle.tasks.download.Download
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/simple/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id("de.undercouch.download") version "5.2.0"
id("de.undercouch.download") version "5.2.1"
}

import de.undercouch.gradle.tasks.download.Download
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/temp-rename/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id("de.undercouch.download") version "5.2.0"
id("de.undercouch.download") version "5.2.1"
}

import de.undercouch.gradle.tasks.download.Download
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/unzip/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id("de.undercouch.download") version "5.2.0"
id("de.undercouch.download") version "5.2.1"
}

import de.undercouch.gradle.tasks.download.Download
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/verify-extension/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id("de.undercouch.download") version "5.2.0"
id("de.undercouch.download") version "5.2.1"
}

/**
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/verify/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Include the gradle-download-task plugin
*/
plugins {
id("de.undercouch.download") version "5.2.0"
id("de.undercouch.download") version "5.2.1"
}

import de.undercouch.gradle.tasks.download.Download
Expand Down

0 comments on commit 1b5d697

Please sign in to comment.