Skip to content

Commit

Permalink
Merge pull request #118 from Jozott00/feature/sup-251
Browse files Browse the repository at this point in the history
version: Support IntelliJ Platform 2025.1.*
  • Loading branch information
Jozott00 authored Feb 13, 2025
2 parents d9e5c4c + f2af88f commit 3f5e944
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

## [Unreleased]

### Added

- Support for IntelliJ Platform 2025.1.*

## [0.10.3] - 2024-09-18

### Added
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ intellijPlatform {

ideaVersion {
sinceBuild = providers.gradleProperty("pluginSinceBuild")
untilBuild = providers.gradleProperty("pluginUntilBuild")
untilBuild = provider { null } // no until version constraint
}
}

Expand Down
5 changes: 3 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ pluginGroup=com.github.jozott00.wokwiintellij
pluginName=wokwi-intellij
pluginRepositoryUrl=https://github.com/Jozott00/wokwi-intellij
# SemVer format -> https://semver.org
pluginVersion=0.10.3
pluginVersion=0.10.4
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild=242
pluginUntilBuild=243.*
# Disabled until version constraint
#pluginUntilBuild=243.*
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
platformType=IC
platformVersion=2024.2
Expand Down

0 comments on commit 3f5e944

Please sign in to comment.