From 403f7e24a894b83942889c6faaa006a18fd77cd6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 19:33:37 +0000 Subject: [PATCH 1/2] Bump com.diffplug.spotless from 6.21.0 to 6.22.0 Bumps com.diffplug.spotless from 6.21.0 to 6.22.0. --- updated-dependencies: - dependency-name: com.diffplug.spotless dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 5c95e6c7..dbb8956f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,7 +12,7 @@ plugins { `maven-publish` signing jacoco - id("com.diffplug.spotless") version "6.21.0" + id("com.diffplug.spotless") version "6.22.0" id("com.github.ben-manes.versions") version "0.49.0" id("io.github.gradle-nexus.publish-plugin") version "1.3.0" id("net.researchgate.release") version "3.0.2" From 6067713a4bb6fbb013b06fc75754303d9a97b532 Mon Sep 17 00:00:00 2001 From: Kenny Root Date: Sun, 19 Nov 2023 08:21:41 -0800 Subject: [PATCH 2/2] Run spotlessApply with the new version --- build.gradle.kts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index dbb8956f..1780a169 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -127,9 +127,10 @@ tasks.named("dependencyUpdates") { resolutionStrategy { componentSelection { all { - val rejected = listOf("alpha", "beta", "rc", "cr", "m", "preview", "b", "ea") - .map { qualifier -> Regex("(?i).*[.-]$qualifier[.\\d-+]*") } - .any { it.matches(candidate.version) } + val rejected = + listOf("alpha", "beta", "rc", "cr", "m", "preview", "b", "ea") + .map { qualifier -> Regex("(?i).*[.-]$qualifier[.\\d-+]*") } + .any { it.matches(candidate.version) } if (rejected) { reject("Release candidate") }