Skip to content

Commit

Permalink
Bump up version number to 5.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
michel-kraemer committed Aug 13, 2022
1 parent 7b8db98 commit b15b916
Show file tree
Hide file tree
Showing 29 changed files with 30 additions and 30 deletions.
4 changes: 2 additions & 2 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.1.0"
id "de.undercouch.download" version "5.1.1"
}
```

Expand Down Expand Up @@ -170,7 +170,7 @@ 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.1.0.zip'
src 'https://github.com/michel-kraemer/gradle-download-task/archive/refs/tags/5.1.1.zip'
dest new File(buildDir, '5.1.0.zip')
}
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.1.0'
id 'de.undercouch.download' version '5.1.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.1.0'
id 'de.undercouch.download' version '5.1.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.1.0'
id 'de.undercouch.download' version '5.1.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.1.0'
id 'de.undercouch.download' version '5.1.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.1.0'
id 'de.undercouch.download' version '5.1.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.1.0'
id 'de.undercouch.download' version '5.1.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.1.0'
id 'de.undercouch.download' version '5.1.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.1.0'
id 'de.undercouch.download' version '5.1.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.1.0'
id 'de.undercouch.download' version '5.1.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.1.0'
id 'de.undercouch.download' version '5.1.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.1.0'
id 'de.undercouch.download' version '5.1.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.1.0'
id 'de.undercouch.download' version '5.1.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.1.0'
id 'de.undercouch.download' version '5.1.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.1.0'
id 'de.undercouch.download' version '5.1.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.1.0"
id("de.undercouch.download") version "5.1.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.1.0"
id("de.undercouch.download") version "5.1.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.1.0"
id("de.undercouch.download") version "5.1.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.1.0"
id("de.undercouch.download") version "5.1.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.1.0"
id("de.undercouch.download") version "5.1.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.1.0"
id("de.undercouch.download") version "5.1.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.1.0"
id("de.undercouch.download") version "5.1.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.1.0"
id("de.undercouch.download") version "5.1.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.1.0"
id("de.undercouch.download") version "5.1.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.1.0"
id("de.undercouch.download") version "5.1.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.1.0"
id("de.undercouch.download") version "5.1.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.1.0"
id("de.undercouch.download") version "5.1.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.1.0"
id("de.undercouch.download") version "5.1.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.1.0"
id("de.undercouch.download") version "5.1.1"
}

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

0 comments on commit b15b916

Please sign in to comment.