diff --git a/CHANGELOG.md b/CHANGELOG.md index 97e34592..b90585d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/) and this project adheres to [Semantic Versioning](https://semver.org/). -## [10.2.0-SNAPSHOT] - Unreleased +## [10.2.0] - 2021.09.08 ### Added - - sarif reporter to provided reporters + - sarif reporter to provided reporters ([#516](https://github.com/JLLeitschuh/ktlint-gradle/pull/516)) ### Changed - Update Gradle to `7.1.1` version @@ -22,9 +22,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/). - Add Git hook task breaks configuration cache ([issue: #505](https://github.com/JLLeitschuh/ktlint-gradle/issues/505)) - Plugin failed to apply on eager tasks creation ([issue: #495](https://github.com/JLLeitschuh/ktlint-gradle/issues/495)) -### Removed - - ? - ## [10.1.0] - 2021.06.02 ### Added - Baseline support ([#414](https://github.com/JLLeitschuh/ktlint-gradle/issues/414)) diff --git a/README.md b/README.md index d0a96629..1c0e8d9b 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ **Provides a convenient wrapper plugin over the [ktlint](https://github.com/pinterest/ktlint) project.** -Latest plugin version: [10.1.0](/CHANGELOG.md#1010---20210602) +Latest plugin version: [10.2.0](/CHANGELOG.md#1020---20210908) [![Join the chat at https://kotlinlang.slack.com](https://img.shields.io/badge/slack-@kotlinlang/ktlint-yellow.svg?logo=slack)](https://kotlinlang.slack.com/messages/CKS3XG0LS) [![Build Status](https://travis-ci.org/JLLeitschuh/ktlint-gradle.svg?branch=master)](https://travis-ci.org/JLLeitschuh/ktlint-gradle) diff --git a/plugin/build.gradle.kts b/plugin/build.gradle.kts index 6f0f12d2..123951e3 100644 --- a/plugin/build.gradle.kts +++ b/plugin/build.gradle.kts @@ -15,7 +15,7 @@ plugins { val pluginGroup = "org.jlleitschuh.gradle" group = pluginGroup -version = "10.2.0-SNAPSHOT" +version = "10.2.0" repositories { google() diff --git a/plugin/src/test/kotlin/org/jlleitschuh/gradle/ktlint/testdsl/testAnnotations.kt b/plugin/src/test/kotlin/org/jlleitschuh/gradle/ktlint/testdsl/testAnnotations.kt index 06c5f7f6..62e2a66f 100644 --- a/plugin/src/test/kotlin/org/jlleitschuh/gradle/ktlint/testdsl/testAnnotations.kt +++ b/plugin/src/test/kotlin/org/jlleitschuh/gradle/ktlint/testdsl/testAnnotations.kt @@ -12,7 +12,7 @@ import kotlin.streams.asStream object TestVersions { const val minSupportedGradleVersion = KtlintBasePlugin.LOWEST_SUPPORTED_GRADLE_VERSION const val maxSupportedGradleVersion = "7.1.1" - const val pluginVersion = "10.2.0-SNAPSHOT" + const val pluginVersion = "10.2.0" const val minSupportedKotlinPluginVersion = "1.4.32" const val maxSupportedKotlinPluginVersion = "1.5.21" } diff --git a/plugin/src/test/kotlin/org/jlleitschuh/gradle/ktlint/testdsl/testDsl.kt b/plugin/src/test/kotlin/org/jlleitschuh/gradle/ktlint/testdsl/testDsl.kt index 3383c17f..b0ec44ae 100644 --- a/plugin/src/test/kotlin/org/jlleitschuh/gradle/ktlint/testdsl/testDsl.kt +++ b/plugin/src/test/kotlin/org/jlleitschuh/gradle/ktlint/testdsl/testDsl.kt @@ -165,7 +165,7 @@ fun projectSetup( plugins { id 'org.jetbrains.kotlin.$kotlinPluginType' version '$kotlinPluginVersion' - id 'org.jlleitschuh.gradle.ktlint' version '10.2.0-SNAPSHOT' + id 'org.jlleitschuh.gradle.ktlint' version '${TestVersions.pluginVersion}' } }