diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ccbf78..4f7f611 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## Version 0.0.12 + +* Add a Gradle DSL option to disable aggregate `stats.sarif` generation while preserving per-stat `code_references_*.sarif` exports. + +**Full Changelog**: https://github.com/square/invert/compare/0.0.11...0.0.12 + ## Version 0.0.11 * Expose owner details metadata through `InvertAllCollectedDataRepo.getOwners()` for collector aggregation enrichment. diff --git a/README.md b/README.md index b1d6a70..445268c 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ Invert is a Gradle Plugin with a dynamic web report that lets you gain insights ``` // Root build.gradle plugins { - id("com.squareup.invert") version "0.0.11" + id("com.squareup.invert") version "0.0.12" } repositories { mavenCentral() // Released Versions diff --git a/gradle.properties b/gradle.properties index b9c2120..dc0f9c4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx16g kotlin.code.style=official android.useAndroidX=true group=com.squareup.invert -version=0.0.12-SNAPSHOT +version=0.0.12 # https://kotlinlang.org/docs/dokka-migration.html#enable-migration-helpers org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled