Skip to content

Commit

Permalink
Merge pull request #15 from dinbtechit/chore/13-support-future-releases
Browse files Browse the repository at this point in the history
Fix #13 - Support all future releases
  • Loading branch information
dinbtechit authored Nov 23, 2024
2 parents db5f206 + ce78444 commit 0af4eeb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
# jetbrains-nestjs Changelog

## [Unreleased]
### Fixed
- Supporting all future builds

## [0.0.3] - 2024-10-27

Expand Down
4 changes: 3 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ intellijPlatform {

ideaVersion {
sinceBuild = providers.gradleProperty("pluginSinceBuild")
untilBuild = providers.gradleProperty("pluginUntilBuild")
if (providers.gradleProperty("pluginUntilBuild").get() != "") {
untilBuild = providers.gradleProperty("pluginUntilBuild")
}
}
}

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ pluginGroup = com.github.dinbtechit.jetbrainsnestjs
pluginName = jetbrains-nestjs
pluginRepositoryUrl = https://github.com/dinbtechit/jetbrains-nestjs
# SemVer format -> https://semver.org
pluginVersion = 0.0.3
pluginVersion = 0.0.4

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 223
pluginUntilBuild = 242.*
pluginUntilBuild =

# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
platformType = IU
Expand Down

0 comments on commit 0af4eeb

Please sign in to comment.