Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
izhangzhihao committed Oct 23, 2022
1 parent 598304c commit fd07914
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To use the plugin add the following to your app `build.gradle.kt`:
```kotlin
plugins {
kotlin("jvm")
id("io.github.izhangzhihao.unmeta") version "1.0.1"
id("io.github.izhangzhihao.unmeta") version "1.0.0"
}

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

```kotlin
gradle.taskGraph.whenReady {
if (allTasks.any { it.name.contains("buildPlugin") }) {
if (allTasks.any { it.name.contains("release") }) {
unmeta {
enable.set(true)
}
Expand Down
2 changes: 1 addition & 1 deletion example/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
kotlin("jvm")
id("io.github.izhangzhihao.unmeta") version "1.0.1"
id("io.github.izhangzhihao.unmeta") version "1.0.0"
}

unmeta {
Expand Down
4 changes: 2 additions & 2 deletions plugin-build/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
ID=io.github.izhangzhihao.unmeta
VERSION=1.0.1
VERSION=1.0.0
GROUP=io.github.izhangzhihao
DISPLAY_NAME=Unmeta Kotlin classes plugin
DESCRIPTION=Unmeta Kotlin classes plugin
DESCRIPTION=Remove @Metadata and @DebugMetadata annotation from your Kotlin classes
WEBSITE=https://github.com/izhangzhihao/unmeta
VCS_URL=https://github.com/izhangzhihao/unmeta
IMPLEMENTATION_CLASS=io.github.izhangzhihao.unmeta.UnmetaPlugin

0 comments on commit fd07914

Please sign in to comment.