Skip to content

Commit

Permalink
New 10.2.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tapchicoma committed Sep 8, 2021
1 parent 3862e9a commit a3b8a1d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
7 changes: 2 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ plugins {

val pluginGroup = "org.jlleitschuh.gradle"
group = pluginGroup
version = "10.2.0-SNAPSHOT"
version = "10.2.0"

repositories {
google()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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}'
}
}
Expand Down

0 comments on commit a3b8a1d

Please sign in to comment.