From 74d0accc62f470699bbaab83aadbdd3b982e3df3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Aug 2022 12:04:24 +0000 Subject: [PATCH 1/3] Bump diktat-rules from 1.2.1 to 1.2.3 Bumps [diktat-rules](https://github.com/saveourtool/diktat) from 1.2.1 to 1.2.3. - [Release notes](https://github.com/saveourtool/diktat/releases) - [Commits](https://github.com/saveourtool/diktat/compare/v1.2.1...v1.2.3) --- updated-dependencies: - dependency-name: org.cqfn.diktat:diktat-rules dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- lib/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/build.gradle b/lib/build.gradle index 4aba993334..e14e5c6438 100644 --- a/lib/build.gradle +++ b/lib/build.gradle @@ -51,7 +51,7 @@ dependencies { ktlintCompileOnly "com.pinterest.ktlint:ktlint-ruleset-experimental:$VER_KTLINT" ktlintCompileOnly "com.pinterest.ktlint:ktlint-ruleset-standard:$VER_KTLINT" - String VER_DIKTAT = "1.2.1" + String VER_DIKTAT = "1.2.3" diktatCompileOnly "org.cqfn.diktat:diktat-rules:$VER_DIKTAT" // used for markdown formatting From dbb207a2425cf5de37dc72ab737e1ba26e6a6a99 Mon Sep 17 00:00:00 2001 From: Ned Twigg Date: Tue, 9 Aug 2022 16:21:20 -0700 Subject: [PATCH 2/3] Bump changelogs. --- CHANGES.md | 2 ++ plugin-gradle/CHANGES.md | 2 ++ plugin-maven/CHANGES.md | 2 ++ 3 files changed, 6 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index d884759825..53976671ba 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -12,6 +12,8 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format ( ## [Unreleased] ### Fixed * Fix Clang not knowing the filename and changing the format ([#1268](https://github.com/diffplug/spotless/pull/1268) fixes [#1267](https://github.com/diffplug/spotless/issues/1267)). +### Changes +* Bump default `diktat` version to latest `1.2.1` -> `1.2.3` ([#1266](https://github.com/diffplug/spotless/pull/1266)) ## [2.28.0] - 2022-07-28 ### Added diff --git a/plugin-gradle/CHANGES.md b/plugin-gradle/CHANGES.md index ebfa7d978e..2c9e995b6f 100644 --- a/plugin-gradle/CHANGES.md +++ b/plugin-gradle/CHANGES.md @@ -5,6 +5,8 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format ( ## [Unreleased] ### Fixed * Fix Clang not knowing the filename and changing the format ([#1268](https://github.com/diffplug/spotless/pull/1268) fixes [#1267](https://github.com/diffplug/spotless/issues/1267)). +### Changes +* Bump default `diktat` version to latest `1.2.1` -> `1.2.3` ([#1266](https://github.com/diffplug/spotless/pull/1266)) ## [6.9.0] - 2022-07-28 ### Added diff --git a/plugin-maven/CHANGES.md b/plugin-maven/CHANGES.md index 073b77ca27..4b5cc3e7b3 100644 --- a/plugin-maven/CHANGES.md +++ b/plugin-maven/CHANGES.md @@ -5,6 +5,8 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format ( ## [Unreleased] ### Fixed * Fix Clang not knowing the filename and changing the format ([#1268](https://github.com/diffplug/spotless/pull/1268) fixes [#1267](https://github.com/diffplug/spotless/issues/1267)). +### Changes +* Bump default `diktat` version to latest `1.2.1` -> `1.2.3` ([#1266](https://github.com/diffplug/spotless/pull/1266)) ## [2.24.0] - 2022-07-28 ### Added From ba7d618407a845c03798facb19218408f4098a2e Mon Sep 17 00:00:00 2001 From: Ned Twigg Date: Tue, 9 Aug 2022 16:21:37 -0700 Subject: [PATCH 3/3] Bump default diktat version 1.2.1 -> 1.2.3 --- lib/src/main/java/com/diffplug/spotless/kotlin/DiktatStep.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/main/java/com/diffplug/spotless/kotlin/DiktatStep.java b/lib/src/main/java/com/diffplug/spotless/kotlin/DiktatStep.java index ff3e3240cf..f1cd3103d9 100644 --- a/lib/src/main/java/com/diffplug/spotless/kotlin/DiktatStep.java +++ b/lib/src/main/java/com/diffplug/spotless/kotlin/DiktatStep.java @@ -32,7 +32,7 @@ private DiktatStep() {} private static final String MIN_SUPPORTED_VERSION = "1.2.1"; - private static final String DEFAULT_VERSION = "1.2.1"; + private static final String DEFAULT_VERSION = "1.2.3"; static final String NAME = "diktat"; static final String PACKAGE_DIKTAT = "org.cqfn.diktat"; static final String MAVEN_COORDINATE = PACKAGE_DIKTAT + ":diktat-rules:";