From 1c6fc3fa1d23af767c6c6fb276308adf89aaf2e9 Mon Sep 17 00:00:00 2001 From: Till Krullmann Date: Fri, 10 Apr 2020 17:04:00 +0200 Subject: [PATCH] Increment version to 3.0.1 --- README.adoc | 8 ++++---- gradle.properties | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.adoc b/README.adoc index 9d29f47..007c694 100644 --- a/README.adoc +++ b/README.adoc @@ -31,7 +31,7 @@ Add the following to your build.gradle file: ---- // The plugins block needs to be at the top of your build script plugins { - id 'org.unbroken-dome.test-sets' version '3.0.0' + id 'org.unbroken-dome.test-sets' version '3.0.1' } testSets { @@ -68,7 +68,7 @@ To use the TestSets plugin, include the following in your Gradle script: [source,groovy] ---- plugins { - id 'org.unbroken-dome.test-sets' version '3.0.0' + id 'org.unbroken-dome.test-sets' version '3.0.1' } ---- @@ -353,7 +353,7 @@ To create a test set, use any of the common idioms from the Kotlin DSL: [source,kotlin] ---- plugins { - id("org.unbroken-dome.test-sets") version "3.0.0" + id("org.unbroken-dome.test-sets") version "3.0.1" } testSets { @@ -392,7 +392,7 @@ putting their name, similar to Groovy (you need to put the names in quotes, howe import org.unbrokendome.gradle.plugins.testsets.dsl.TestLibrary plugins { - id("org.unbroken-dome.test-sets") version "3.0.0" + id("org.unbroken-dome.test-sets") version "3.0.1" } testSets { diff --git a/gradle.properties b/gradle.properties index 4427491..ae71ce6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ group=org.unbroken-dome.gradle-plugins -version=3.0.0 +version=3.0.1 kotlinVersion=1.3.71