From e16b36dae8d4de860ab464e3d85e8ec37c55a601 Mon Sep 17 00:00:00 2001 From: Till Krullmann Date: Thu, 15 Nov 2018 21:49:53 +0100 Subject: [PATCH] update version to 2.0.2 --- README.adoc | 8 ++++---- gradle.properties | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.adoc b/README.adoc index 765532b..458f7f5 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 '2.0.1' + id 'org.unbroken-dome.test-sets' version '2.0.2' } 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 '2.0.1' + id 'org.unbroken-dome.test-sets' version '2.0.2' } ---- @@ -363,7 +363,7 @@ To create a test set, use any of the common idioms from the Kotlin DSL: import org.unbrokendome.gradle.plugins.testsets.dsl.TestLibrary plugins { - id("org.unbroken-dome.test-sets") version "2.0.1" + id("org.unbroken-dome.test-sets") version "2.0.2" } 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 "2.0.1" + id("org.unbroken-dome.test-sets") version "2.0.2" } testSets { diff --git a/gradle.properties b/gradle.properties index 3357f4e..f14d4b9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ group=org.unbroken-dome.gradle-plugins -version=2.0.1 +version=2.0.2 pluginBundle.displayName=Gradle TestSets plugin pluginBundle.description=A plugin for the Gradle build system that allows specifying test sets (like integration or acceptance tests). Each test set is a logical grouping of a source set, dependency configurations, and related tasks and artifacts.