From 21630317b4d95df2548ff81bbc296a3277e7ab84 Mon Sep 17 00:00:00 2001 From: Inaki Villar Date: Wed, 27 May 2020 20:56:38 -0700 Subject: [PATCH 1/2] adding new version --- talaiot/build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/talaiot/build.gradle.kts b/talaiot/build.gradle.kts index a2416702..50171146 100644 --- a/talaiot/build.gradle.kts +++ b/talaiot/build.gradle.kts @@ -4,14 +4,14 @@ plugins { `maven-publish` id("jacoco") kotlin("jvm") version "1.3.60" - id("com.gradle.plugin-publish") version "0.10.0" + id("com.gradle.plugin-publish") version "0.12.0" } jacoco { toolVersion = "0.8.3" } -val versionTalaiot = "1.3.1-SNAPSHOT" +val versionTalaiot = "1.3.2-SNAPSHOT" group = "com.cdsap" version = versionTalaiot @@ -49,7 +49,7 @@ pluginBundle { displayName = "Talaiot" description = "Simple and extensible plugin to track task and build times in your Gradle Project." tags = listOf("tracking", "kotlin", "gradle") - version = "1.2.0" + version = versionTalaiot } } } From 2025a327c005a7c7c838e323ccb0381bbe08751f Mon Sep 17 00:00:00 2001 From: Inaki Villar Date: Wed, 27 May 2020 20:59:57 -0700 Subject: [PATCH 2/2] updating README --- README.md | 10 +++++----- sample/build.gradle.kts | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 63be3f59..128b7a91 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ https://en.wikipedia.org/wiki/Talaiot Using the plugins DSL ``` plugins { - id("com.cdsap.talaiot") version "1.3.0" + id("com.cdsap.talaiot") version "1.3.1" } ``` @@ -54,7 +54,7 @@ buildscript { } } dependencies { - classpath("com.cdsap:talaiot:1.3.0") + classpath("com.cdsap:talaiot:1.3.1") } } @@ -65,7 +65,7 @@ apply(plugin = "com.cdsap.talaiot") Using the plugins DSL: ``` plugins { - id "com.cdsap.talaiot" version "1.3.0" + id "com.cdsap.talaiot" version "1.3.1" } ``` @@ -79,7 +79,7 @@ buildscript { } } dependencies { - classpath "com.cdsap:talaiot:1.3.0" + classpath "com.cdsap:talaiot:1.3.1" } } @@ -96,7 +96,7 @@ maven ( url = uri("http://oss.jfrog.org/artifactory/oss-snapshot-local") ) And the current Snapshot: ```` -classpath("com.cdsap:talaiot:1.3.1-SNAPSHOT") +classpath("com.cdsap:talaiot:1.3.2-SNAPSHOT") ```` ## Basic configuration diff --git a/sample/build.gradle.kts b/sample/build.gradle.kts index 1ce6e0cc..8bc9d6aa 100644 --- a/sample/build.gradle.kts +++ b/sample/build.gradle.kts @@ -13,7 +13,7 @@ repositories { plugins { kotlin("jvm") version "1.3.60" - id("com.cdsap.talaiot") version "1.3.1-SNAPSHOT" + id("com.cdsap.talaiot") version "1.3.2-SNAPSHOT" } dependencies {