Skip to content

Commit 1ff7368

Browse files
committed
5.4.0 initial
1 parent 77e9e65 commit 1ff7368

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
66

7+
## 5.4.0
8+
79
## 5.3.0
810

911
### Added

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
1. Check out this repository
4444
1. Open a folder with the project in the IntelliJ Ultimate using the `open` action button.
45-
1. Make sure that you on the latest develop branch (e.g `5.3.0-develop`)
45+
1. Make sure that you on the latest develop branch (e.g `5.4.0-develop`)
4646
1. Right-click on the `build.gradle` file, choose "Import Gradle project" (if this is not exist look for "Build module '<root folder name>'") (you need to have Gradle plugin installed)
4747
1. Check if the right SDK version is used for the project.
4848
- Current Java version for the project is **java 11**, so you should additionally download **SDK 11** and choose it in the module settings: `Right click by the project root > Open Module Settings > Project Settings > Project > Project SDK`

build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ repositories {
1515
}
1616

1717
group 'com.magento.idea'
18-
version '5.3.0'
18+
version '5.4.0'
1919

2020
apply plugin: 'org.jetbrains.intellij'
2121
apply plugin: 'java'
2222
apply plugin: 'idea'
2323
apply plugin: 'groovy'
2424
apply plugin: 'org.jetbrains.changelog'
2525

26-
def phpPluginVersion = System.getProperty("phpPluginVersion", "241.14494.158")
27-
def ideaVersion = System.getProperty("ideaVersion", "2024.1")
26+
def phpPluginVersion = System.getProperty("phpPluginVersion", "242.20224.427")
27+
def ideaVersion = System.getProperty("ideaVersion", "2024.2")
2828
def javaVersion = 17
2929

3030
java {
@@ -43,7 +43,7 @@ intellij {
4343
'properties',
4444
'com.intellij.css',
4545
'JavaScript',
46-
'com.intellij.lang.jsgraphql:241.14494.150',
46+
'com.intellij.lang.jsgraphql:242.20224.155',
4747
'platform-images',
4848
'copyright'
4949
]

resources/META-INF/plugin.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<idea-plugin require-restart="true">
88
<id>com.magento.idea.magento2plugin</id>
99
<name>Magento PhpStorm</name>
10-
<version>5.3.0</version>
10+
<version>5.4.0</version>
1111
<vendor url="https://github.com/magento/magento2-phpstorm-plugin">Magento Inc.</vendor>
1212

1313
<description><![CDATA[
@@ -24,7 +24,7 @@
2424
</change-notes>
2525

2626
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Build+Number+Ranges for description -->
27-
<idea-version since-build="241.14494.158"/>
27+
<idea-version since-build="242.20224.300"/>
2828

2929
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Plugin+Compatibility+with+IntelliJ+Platform+Products
3030
on how to target different products -->

0 commit comments

Comments
 (0)