Skip to content

Commit

Permalink
Bump up version number to 5.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michel-kraemer committed Feb 29, 2024
1 parent 6905421 commit 904c4ed
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 @@ -65,7 +65,7 @@ First, apply the plugin configuration:

```groovy
plugins {
id "de.undercouch.download" version "5.5.0"
id "de.undercouch.download" version "5.6.0"
}
```

Expand Down Expand Up @@ -184,8 +184,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.5.0.zip'
dest layout.buildDirectory.file('5.5.0.zip')
src 'https://github.com/michel-kraemer/gradle-download-task/archive/refs/tags/5.6.0.zip'
dest layout.buildDirectory.file('5.6.0.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 @@ -11,7 +11,7 @@ apply plugin: 'signing'
apply from: "gradle/integrationTest.gradle"

group = 'de.undercouch'
version = '5.6.0-SNAPSHOT'
version = '5.6.0'

java {
sourceCompatibility = '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.5.0'
id 'de.undercouch.download' version '5.6.0'
}

/**
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.5.0'
id 'de.undercouch.download' version '5.6.0'
}

/**
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.5.0'
id 'de.undercouch.download' version '5.6.0'
}

/**
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.5.0'
id 'de.undercouch.download' version '5.6.0'
}

/**
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.5.0'
id 'de.undercouch.download' version '5.6.0'
}

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.5.0'
id 'de.undercouch.download' version '5.6.0'
}

/**
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.5.0'
id 'de.undercouch.download' version '5.6.0'
}

/**
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.5.0'
id 'de.undercouch.download' version '5.6.0'
}

/**
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.5.0'
id 'de.undercouch.download' version '5.6.0'
}

/**
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.5.0'
id 'de.undercouch.download' version '5.6.0'
}

/**
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.5.0'
id 'de.undercouch.download' version '5.6.0'
}

/**
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.5.0'
id 'de.undercouch.download' version '5.6.0'
}

/**
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.5.0'
id 'de.undercouch.download' version '5.6.0'
}

/**
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.5.0'
id 'de.undercouch.download' version '5.6.0'
}

/**
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.5.0"
id("de.undercouch.download") version "5.6.0"
}

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.5.0"
id("de.undercouch.download") version "5.6.0"
}

/**
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.5.0"
id("de.undercouch.download") version "5.6.0"
}

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.5.0"
id("de.undercouch.download") version "5.6.0"
}

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.5.0"
id("de.undercouch.download") version "5.6.0"
}

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.5.0"
id("de.undercouch.download") version "5.6.0"
}

/**
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.5.0"
id("de.undercouch.download") version "5.6.0"
}

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.5.0"
id("de.undercouch.download") version "5.6.0"
}

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.5.0"
id("de.undercouch.download") version "5.6.0"
}

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.5.0"
id("de.undercouch.download") version "5.6.0"
}

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.5.0"
id("de.undercouch.download") version "5.6.0"
}

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.5.0"
id("de.undercouch.download") version "5.6.0"
}

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.5.0"
id("de.undercouch.download") version "5.6.0"
}

/**
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.5.0"
id("de.undercouch.download") version "5.6.0"
}

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

0 comments on commit 904c4ed

Please sign in to comment.