From 85fa57306ac7721e45e8f700027ad0a668919ed6 Mon Sep 17 00:00:00 2001 From: Mark Brockhoff <95471369+markbrockhoff@users.noreply.github.com> Date: Fri, 21 Jul 2023 09:58:19 +0200 Subject: [PATCH] Upgrade dependencies (#75) --- CHANGELOG.md | 7 +++++++ build.gradle.kts | 12 ++++++++---- gradle.properties | 2 +- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 911dacd..fe9ef1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,12 +4,19 @@ ## [Unreleased] +### Changed + +- Update dependency `org.jetbrains.changelog` from v2.0.0 to v2.1.2 +- Update dependency `org.jetbrains.changelog` from v0.6.0 to v0.7.2 + ## [2.0.0-alpha.1] - 2023-07-20 ### Changed + - Complete rewrite of the plugin in Kotlin - BREAKING: Spectral no longer comes bundled with the plugin and needs to be installed additionally now - BREAKING: Settings now only apply on a project level [Unreleased]: https://github.com/SchwarzIT/spectral-intellij-plugin/compare/v2.0.0-alpha.1...HEAD + [2.0.0-alpha.1]: https://github.com/SchwarzIT/spectral-intellij-plugin/commits/v2.0.0-alpha.1 diff --git a/build.gradle.kts b/build.gradle.kts index 78539fc..6219283 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,11 +12,11 @@ plugins { // Gradle IntelliJ Plugin id("org.jetbrains.intellij") version "1.15.0" // Gradle Changelog Plugin - id("org.jetbrains.changelog") version "2.0.0" + id("org.jetbrains.changelog") version "2.1.2" // Gradle Qodana Plugin id("org.jetbrains.qodana") version "0.1.13" // Gradle Kover Plugin - id("org.jetbrains.kotlinx.kover") version "0.6.1" + id("org.jetbrains.kotlinx.kover") version "0.7.2" kotlin("plugin.serialization") version "1.9.0" } @@ -59,8 +59,12 @@ qodana { } // Configure Gradle Kover Plugin - read more: https://github.com/Kotlin/kotlinx-kover#configuration -kover.xmlReport { - onCheck.set(true) +koverReport { + defaults { + xml { + onCheck = true + } + } } tasks { diff --git a/gradle.properties b/gradle.properties index 04eaa71..d320266 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ pluginGroup=com.schwarzit.spectral-intellij-plugin pluginName=Spectral pluginRepositoryUrl=https://github.com/SchwarzIT/spectral-intellij-plugin # SemVer format -> https://semver.org -pluginVersion=2.0.0-alpha.1 +pluginVersion=2.0.0-alpha.2 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild=222 pluginUntilBuild=231.*