Skip to content

Commit 9997731

Browse files
authored
Merge pull request #13 from Flyrell/feature/2025.2
feat: Support latest Intellij products 2025.2
2 parents b9807f9 + fea7a50 commit 9997731

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ You can find the plugin on [IntelliJ marketplace](https://plugins.jetbrains.com/
1414

1515
Manually verified with these products…
1616

17-
- IntelliJ IDEA Community Edition 2025.1+
18-
- IntelliJ IDEA Ultimate 2025.1+
19-
- PhpStorm 2025.1+
20-
- WebStorm 2025.1+
17+
- IntelliJ IDEA Community Edition 2025.2+
18+
- IntelliJ IDEA Ultimate 2025.2+
19+
- PhpStorm 2025.2+
20+
- WebStorm 2025.2+
2121

2222
## ❤️🙏 Love & Thanks
2323

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ fun properties(key: String) = providers.gradleProperty(key)
44

55
plugins {
66
id("java")
7-
id("org.jetbrains.kotlin.jvm") version "2.0.10"
7+
id("org.jetbrains.kotlin.jvm") version "2.2.0"
88
id("org.jetbrains.intellij.platform") version "2.5.0"
99
}
1010

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ org.gradle.caching=true
77

88
pluginName=html-attribute-folder
99
pluginGroup=dev.zbinski
10-
pluginVersion=1.2.0
11-
platformVersion=2025.1
10+
pluginVersion=1.3.0
11+
platformVersion=2025.2
1212
# @see https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-types.html#IntelliJPlatformType
1313
platformType=IC
1414
# @see https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html#platformVersions
15-
pluginSinceBuild=251
16-
pluginUntilBuild=251.*
15+
pluginSinceBuild=252
16+
pluginUntilBuild=252.*
1717
javaVersion=21

src/main/resources/META-INF/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Guidelines: https://plugins.jetbrains.com/docs/marketplace/plugin-overview-page.html#plugin-name -->
88
<name>HTML Attribute Folder</name>
99

10-
<version>1.2.0</version>
10+
<version>1.3.0</version>
1111

1212
<!-- A displayed Vendor name or Organization ID displayed on the Plugins Page. -->
1313
<vendor email="dawid@zbinski.dev" url="https://zbinski.dev">Dawid Zbiński</vendor>

0 commit comments

Comments
 (0)