Skip to content

Commit fd07914

Browse files
committed
1.0.0
1 parent 598304c commit fd07914

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To use the plugin add the following to your app `build.gradle.kt`:
1414
```kotlin
1515
plugins {
1616
kotlin("jvm")
17-
id("io.github.izhangzhihao.unmeta") version "1.0.1"
17+
id("io.github.izhangzhihao.unmeta") version "1.0.0"
1818
}
1919

2020
unmeta {
@@ -26,7 +26,7 @@ To enable the plugin only for release builds add this section:
2626

2727
```kotlin
2828
gradle.taskGraph.whenReady {
29-
if (allTasks.any { it.name.contains("buildPlugin") }) {
29+
if (allTasks.any { it.name.contains("release") }) {
3030
unmeta {
3131
enable.set(true)
3232
}

example/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
kotlin("jvm")
3-
id("io.github.izhangzhihao.unmeta") version "1.0.1"
3+
id("io.github.izhangzhihao.unmeta") version "1.0.0"
44
}
55

66
unmeta {

plugin-build/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ID=io.github.izhangzhihao.unmeta
2-
VERSION=1.0.1
2+
VERSION=1.0.0
33
GROUP=io.github.izhangzhihao
44
DISPLAY_NAME=Unmeta Kotlin classes plugin
5-
DESCRIPTION=Unmeta Kotlin classes plugin
5+
DESCRIPTION=Remove @Metadata and @DebugMetadata annotation from your Kotlin classes
66
WEBSITE=https://github.com/izhangzhihao/unmeta
77
VCS_URL=https://github.com/izhangzhihao/unmeta
88
IMPLEMENTATION_CLASS=io.github.izhangzhihao.unmeta.UnmetaPlugin

0 commit comments

Comments
 (0)