Skip to content

Commit

Permalink
Prepare 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerbwong committed Oct 15, 2022
1 parent 6f8ef5d commit 94a9dd3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ This plugin registers the following tasks:

`metalavaCheckCompatibility` - Checks API compatibility between the code base and the current API.

For Android library modules, a task is created for each build variant (e.g. `metalavaGenerateSignatureRelease`)

The plugin can also be configured using the `metalava` extension block

```kt
Expand All @@ -75,9 +77,9 @@ plugins {
...

metalava {
documentation = Documentation.PUBLIC
outputKotlinNulls = false
includeSignatureVersion = false
documentation.set(Documentation.PUBLIC)
outputKotlinNulls.set(false)
includeSignatureVersion.set(false)
...
}
```
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group = "me.tylerbwong.gradle.metalava"
version = "0.3.2-SNAPSHOT"
version = "0.3.2"

pluginBundle {
website = "https://github.com/tylerbwong/metalava-gradle"
Expand Down

0 comments on commit 94a9dd3

Please sign in to comment.