Skip to content

Commit 85d6e9e

Browse files
committed
build 11.2.0
1 parent cce684a commit 85d6e9e

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ tasks {
8282
patchPluginXml {
8383
version = properties("pluginVersion")
8484
sinceBuild.set(properties("pluginSinceBuild"))
85+
untilBuild.set(properties("pluginUntilBuild"))
8586
changeNotes.set(file("src/main/resources/META-INF/change-notes.html").readText().replace("<html>", "").replace("</html>", ""))
8687

8788
// Get the latest available change notes from the changelog file

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ pluginGroup = de.espend.idea.php.annotation
55
pluginName = PHP Annotations
66

77
# SemVer format -> https://semver.org
8-
pluginVersion = 11.1.0
8+
pluginVersion = 11.2.0
99

1010
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1111
# for insight into build numbers and IntelliJ Platform versions.
1212
pluginSinceBuild = 242
13+
pluginUntilBuild = 299
1314

1415
# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
1516
platformType = IU
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<html>
2-
<ul>
3-
<li>Use direct interface for "com.jetbrains.php.lang.psi.stubs.PhpStubElementType phpDocTag" access to fix member field issue (EAP) (Daniel Espendiller)</li>
4-
<li>Submit error with final success feedback (Daniel Espendiller)</li>
5-
<li>Remove magic GUI form builder code and use inline code; activate settings forms again (Daniel Espendiller)</li></ul>
1+
<html><ul>
2+
<li><a href="https://github.com/Haehnchen/idea-php-annotation-plugin/issues/322">#322</a> Add OpenAPI Attributes namespace as default aliases (Daniel Espendiller)</li>
3+
<li><a href="https://github.com/Haehnchen/idea-php-annotation-plugin/issues/324">#324</a> Incompatibility with PhpStorm 2025.1: Replace BasicPhpDocStubElementTypes => PhpDocStubElementTypes (Daniel Espendiller)</li>
4+
<li>Add alias for sunrise router (Anatoly Nekhay)</li>
5+
</ul>
66
</html>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<idea-plugin url="https://github.com/Haehnchen/idea-php-annotation-plugin">
22
<id>de.espend.idea.php.annotation</id>
33
<name>PHP Annotations</name>
4-
<version>11.1.0</version>
4+
<version>11.2.0</version>
55
<vendor email="daniel@espendiller.net" url="https://www.espend.de?p=de.espend.idea.php.annotation">espend_de</vendor>
66

77
<description><![CDATA[

0 commit comments

Comments
 (0)