Skip to content

Commit

Permalink
#v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jezzsantos committed Oct 19, 2024
1 parent c16395b commit 50693ec
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ All notable changes to this project are documented in this file.

### Security

## [1.5.0] - 2024-10-20

### Changed

- Updated compatibility beyond Rider 2024.1
- Updated to Java 21
- replaced all obsolete APIs

## 1.4.0 - 2024-10-13

### Changed
Expand Down
5 changes: 4 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ intellijPlatform {
version = plugInVer
ideaVersion {
sinceBuild = providers.gradleProperty("pluginSinceBuild")
untilBuild = providers.gradleProperty("pluginUntilBuild")
untilBuild = if (providers.gradleProperty("pluginUntilBuild").get().isEmpty())
provider { null }
else
providers.gradleProperty("pluginUntilBuild")
}
}
pluginVerification {
Expand Down
7 changes: 4 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# This plugin
pluginGroup=jezzsantos
pluginVersion=1.4.0
pluginVersion=1.5.0
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild=222
pluginUntilBuild=241.*
pluginSinceBuild=241
# Note: leave pluginUntilBuild empty to support all future minor versions
pluginUntilBuild=
# platformVersion below is the version of Rider we will be running on and testing with locally
platformVersion=2024.1
# Other properties -> https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-gradle-properties.html
Expand Down

0 comments on commit 50693ec

Please sign in to comment.