From ea84fa82871b6d30c8a5d392a3c90ba1bbdf3ede Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1aki=20Villar?= Date: Fri, 15 Sep 2023 19:23:34 -0400 Subject: [PATCH] prepare next release (#367) * prepare next release --- .../io/github/cdsap/talaiot/buildplugins/Constants.kt | 4 ++-- .../talaiot/buildplugins/GradlePublishingExtensions.kt | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/buildSrc/src/main/kotlin/io/github/cdsap/talaiot/buildplugins/Constants.kt b/buildSrc/src/main/kotlin/io/github/cdsap/talaiot/buildplugins/Constants.kt index 93016c02..be184ccf 100644 --- a/buildSrc/src/main/kotlin/io/github/cdsap/talaiot/buildplugins/Constants.kt +++ b/buildSrc/src/main/kotlin/io/github/cdsap/talaiot/buildplugins/Constants.kt @@ -1,7 +1,7 @@ package io.github.cdsap.talaiot.buildplugins object Constants { - const val TALAIOT_VERSION = "2.0.0-SNAPSHOT" + const val TALAIOT_VERSION = "2.0.1-SNAPSHOT" const val DEFAULT_GROUP_PLUGIN = "io.github.cdsap.talaiot.plugin" const val DEFAULT_GROUP_LIBRARY = "io.github.cdsap.talaiot" -} \ No newline at end of file +} diff --git a/buildSrc/src/main/kotlin/io/github/cdsap/talaiot/buildplugins/GradlePublishingExtensions.kt b/buildSrc/src/main/kotlin/io/github/cdsap/talaiot/buildplugins/GradlePublishingExtensions.kt index dacf3fa5..67a62602 100644 --- a/buildSrc/src/main/kotlin/io/github/cdsap/talaiot/buildplugins/GradlePublishingExtensions.kt +++ b/buildSrc/src/main/kotlin/io/github/cdsap/talaiot/buildplugins/GradlePublishingExtensions.kt @@ -14,7 +14,10 @@ fun Project.setUpGradlePublishing() { plugins { register(project.name) { id = extension.idPlugin + displayName = extension.displayName implementationClass = extension.mainClass + description = + "${extension.displayName}, simple and extensible plugin to track task and build times in your Gradle Project." } } } @@ -22,9 +25,7 @@ fun Project.setUpGradlePublishing() { configure { website = "https://github.com/cdsap/Talaiot" vcsUrl = "https://github.com/cdsap/Talaiot" - description = - "${extension.displayName}, simple and extensible plugin to track task and build times in your Gradle Project." - tags = listOf("tracking", "kotlin", "gradle") + tags = listOf("tracking", "kotlin") }