diff --git a/CHANGELOG.md b/CHANGELOG.md index 84f5761..3c2831f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - Simplify and optimize GitHub Actions - Gradle Wrapper upgrade to v6.6 - Dependencies - bump org.jetbrains.kotlin.jvm to 1.4.0 +- Dependencies - bump io.gitlab.arturbosch.detekt to 1.11.0 ## [0.3.1] ### Added diff --git a/build.gradle.kts b/build.gradle.kts index 85517d6..95ce46b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -13,7 +13,7 @@ plugins { // gradle-changelog-plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin id("org.jetbrains.changelog") version "0.4.0" // detekt linter - read more: https://detekt.github.io/detekt/kotlindsl.html - id("io.gitlab.arturbosch.detekt") version "1.10.0" + id("io.gitlab.arturbosch.detekt") version "1.11.0" // ktlint linter - read more: https://github.com/JLLeitschuh/ktlint-gradle id("org.jlleitschuh.gradle.ktlint") version "9.3.0" } @@ -38,7 +38,7 @@ repositories { jcenter() } dependencies { - detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.10.0") + detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.11.0") } // Configure gradle-intellij-plugin plugin.