Skip to content

Commit b8b7449

Browse files
committed
Change version to fit Gradle's Plugin Portal's requirements
1 parent 67ce02a commit b8b7449

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
}
1111
val rootGroup = "com.github.kyay10"
1212
group = rootGroup
13-
val rootVersion = "0.1.0-SNAPSHOT"
13+
val rootVersion = "0.1.0"
1414
version = rootVersion
1515
val rootName = name
1616
subprojects {

gradle-plugin/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ pluginBundle {
5252
vcsUrl = website
5353
description = pluginDescription
5454

55-
version = "0.1.0-SNAPSHOT"
55+
version = "0.1.0"
5656
(plugins) {
5757
pluginName {
5858
displayName = pluginDisplayName
5959
tags = listOf(
6060
"kotlin"
6161
)
62-
version = "0.1.0-SNAPSHOT"
62+
version = "0.1.0"
6363
}
6464
}
6565
}

sample/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
plugins {
22
kotlin("multiplatform") version "1.5.21"
3-
id("com.github.kyay10.kotlin-null-defaults") version "0.1.0-SNAPSHOT"
3+
id("com.github.kyay10.kotlin-null-defaults") version "0.1.0"
44
}
55

66
group = "com.github.kyay10.kotlin_null_defaults"
7-
version = "1.0-SNAPSHOT"
7+
version = "1.0"
88

99
repositories {
1010
mavenCentral()

0 commit comments

Comments
 (0)