Skip to content

Commit

Permalink
Upgrade dependencies (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
markbrockhoff authored Jul 21, 2023
1 parent 7c94fa9 commit 85fa573
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
12 changes: 8 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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.*
Expand Down

0 comments on commit 85fa573

Please sign in to comment.