Skip to content

Commit b5c6403

Browse files
authored
Merge pull request #249 from aviyam181199/develop
Fix IDE compatibility for 2025.x versions
2 parents 19a832f + 96b7d42 commit b5c6403

File tree

4 files changed

+20
-5
lines changed

4 files changed

+20
-5
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning].
44

5+
## 3.5.0 - 2026-01-14
6+
7+
### Changed
8+
9+
- Updated Gradle plugin from 1.9.0 to 1.17.4
10+
- Updated platform version from 2022.2 to 2024.1
11+
- Extended IDE compatibility range to support versions 241-253.* (2024.1 through 2025.3.x)
12+
- Upgraded Gradle wrapper from 7.5.1 to 8.5
13+
14+
### Fixed
15+
16+
- Compatibility with IntelliJ IDEA 2025.x versions ([#248])
17+
518
## 3.4.2 - 2023-12-25
619

720
### Fixed
@@ -162,6 +175,7 @@ This project adheres to [Semantic Versioning].
162175
[#127]: https://github.com/ashald/EnvFile/issues/127
163176
[#151]: https://github.com/ashald/EnvFile/issues/151
164177
[#165]: https://github.com/ashald/EnvFile/issues/165
178+
[#248]: https://github.com/ashald/EnvFile/issues/248
165179

166180
[Keep a CHANGELOG]: http://keepachangelog.com
167181
[Semantic Versioning]: http://semver.org/

build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id "java"
33
id "idea"
4-
id "org.jetbrains.intellij" version "1.9.0"
4+
id "org.jetbrains.intellij" version "1.17.4"
55
id "pl.allegro.tech.build.axion-release" version "1.14.1"
66
}
77

@@ -55,14 +55,15 @@ dependencies {
5555
}
5656

5757
wrapper {
58-
gradleVersion = "7.5.1"
58+
gradleVersion = "8.5"
5959
}
6060

6161
runIde.ideDir = java.util.Optional.ofNullable(System.getenv("IDE")).map(File::new).orElse(null)
6262

6363
tasks {
6464
patchPluginXml {
65-
sinceBuild.set("201")
65+
sinceBuild.set("222")
66+
untilBuild.set("253.*")
6667
}
6768

6869
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

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>
22
<id>net.ashald.envfile</id>
33
<name>EnvFile</name>
4-
<version>3.4.2</version>
4+
<version>3.5.0</version>
55
<vendor email="envfile@ashald.net">Borys Pierov</vendor>
66

77
<description><![CDATA[

0 commit comments

Comments
 (0)