Skip to content

feat: Support latest Intellij products 2025.2 #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Aug 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ You can find the plugin on [IntelliJ marketplace](https://plugins.jetbrains.com/

Manually verified with these products…

- IntelliJ IDEA Community Edition 2025.1+
- IntelliJ IDEA Ultimate 2025.1+
- PhpStorm 2025.1+
- WebStorm 2025.1+
- IntelliJ IDEA Community Edition 2025.2+
- IntelliJ IDEA Ultimate 2025.2+
- PhpStorm 2025.2+
- WebStorm 2025.2+

## ❤️🙏 Love & Thanks

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ fun properties(key: String) = providers.gradleProperty(key)

plugins {
id("java")
id("org.jetbrains.kotlin.jvm") version "2.0.10"
id("org.jetbrains.kotlin.jvm") version "2.2.0"
id("org.jetbrains.intellij.platform") version "2.5.0"
}

Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ org.gradle.caching=true

pluginName=html-attribute-folder
pluginGroup=dev.zbinski
pluginVersion=1.2.0
platformVersion=2025.1
pluginVersion=1.3.0
platformVersion=2025.2
# @see https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-types.html#IntelliJPlatformType
platformType=IC
# @see https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html#platformVersions
pluginSinceBuild=251
pluginUntilBuild=251.*
pluginSinceBuild=252
pluginUntilBuild=252.*
javaVersion=21
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Guidelines: https://plugins.jetbrains.com/docs/marketplace/plugin-overview-page.html#plugin-name -->
<name>HTML Attribute Folder</name>

<version>1.2.0</version>
<version>1.3.0</version>

<!-- A displayed Vendor name or Organization ID displayed on the Plugins Page. -->
<vendor email="[email protected]" url="https://zbinski.dev">Dawid Zbiński</vendor>
Expand Down