Skip to content

Commit

Permalink
Bump version to 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
chippmann committed May 11, 2022
1 parent 90bb6cb commit 262f818
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The aim these tasks for Kotlin Multiplatform projects at the moment is just ease
- Add the plugin to your `plugins` block inside `build.gradle.kts`:
```kotlin
plugins {
id("ch.hippmann.localizer") version "0.0.1"
id("ch.hippmann.localizer") version "0.0.2"
}
```

Expand Down Expand Up @@ -78,7 +78,7 @@ the top of the app's `settings.gradle.kts` file:
*Gradle KTS:*
```kotlin
// without this doing:
// plugin { id("ch.hippmann.localizer") version "0.0.1-SNAPSHOT" }
// plugin { id("ch.hippmann.localizer") version "0.0.2-SNAPSHOT" }
// won't work as gradle does not know how to map the plugin id to an actual artifact.
// this is only required when trying out local builds. Comment this out when trying out a plugin published
// in the gradle plugin portal.
Expand All @@ -100,7 +100,7 @@ the top of the app's `settings.gradle.kts` file:
*Gradle groovy:*
```groovy
// without this doing:
// plugin { id "ch.hippmann.localizer" version "0.0.1-SNAPSHOT" }
// plugin { id "ch.hippmann.localizer" version "0.0.2-SNAPSHOT" }
// won't work as gradle does not know how to map the plugin id to an actual artifact.
// this is only required when trying out local builds. Comment this out when trying out a plugin published
// in the gradle plugin portal.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
}

group = "ch.hippmann"
version = "0.0.1"
version = "0.0.2"

pluginBundle {
website = "https://github.com/chippmann/localizer"
Expand Down

0 comments on commit 262f818

Please sign in to comment.