Skip to content

Commit 2dafc2f

Browse files
committed
Release v4.0.0
1 parent b5c6403 commit 2dafc2f

7 files changed

Lines changed: 19 additions & 18 deletions

File tree

AUTHORS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Special thanks to [Oleg Khromov](https://github.com/olgert) and [Rostyslav Bryzg
66
who helped with testing and provided feedback during early stages of development.
77

88
# Contributors
9+
* [aviyam181199](https://github.com/aviyam181199)
910
* [Yoan Thiebault](https://github.com/yoanthiebault)
1011
* [Stanislav Savulchik](https://github.com/savulchik)
1112
* [Dmytro Kostiuchenko](https://github.com/edio)

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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
5+
## 4.0.0 - 2026-01-15
66

77
### Changed
88

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ scmVersion {
1616

1717
allprojects {
1818
apply plugin: 'java'
19-
sourceCompatibility = 1.8
20-
targetCompatibility = 1.8
19+
sourceCompatibility = 17
20+
targetCompatibility = 17
2121

2222
repositories {
2323
mavenCentral()

modules/core/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ plugins {
44

55
dependencies {
66
implementation 'org.jetbrains:annotations:23.0.0'
7-
implementation 'org.yaml:snakeyaml:1.32'
7+
implementation 'org.yaml:snakeyaml:2.5'
88

9-
implementation 'com.google.guava:guava:31.1-jre'
9+
implementation 'com.google.guava:guava:33.5.0-jre'
1010

11-
compileOnly 'org.projectlombok:lombok:1.18.24'
12-
annotationProcessor 'org.projectlombok:lombok:1.18.24'
11+
compileOnly 'org.projectlombok:lombok:1.18.42'
12+
annotationProcessor 'org.projectlombok:lombok:1.18.42'
1313

1414
testImplementation 'junit:junit:4.13.2'
1515

16-
testCompileOnly 'org.projectlombok:lombok:1.18.24'
17-
testAnnotationProcessor 'org.projectlombok:lombok:1.18.24'
16+
testCompileOnly 'org.projectlombok:lombok:1.18.42'
17+
testAnnotationProcessor 'org.projectlombok:lombok:1.18.42'
1818
}

modules/platform/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ buildSearchableOptions.enabled = false
1111
dependencies {
1212
implementation project(":envfile-core")
1313
implementation 'org.jetbrains:annotations:23.0.0'
14-
implementation 'org.apache.commons:commons-text:1.10.0'
14+
implementation 'org.apache.commons:commons-text:1.15.0'
1515

16-
compileOnly 'org.projectlombok:lombok:1.18.24'
17-
annotationProcessor 'org.projectlombok:lombok:1.18.24'
16+
compileOnly 'org.projectlombok:lombok:1.18.42'
17+
annotationProcessor 'org.projectlombok:lombok:1.18.42'
1818
}

modules/products/idea/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ dependencies {
1919
implementation project(":envfile-platform")
2020
implementation 'org.jetbrains:annotations:23.0.0'
2121

22-
compileOnly 'org.projectlombok:lombok:1.18.24'
23-
annotationProcessor 'org.projectlombok:lombok:1.18.24'
22+
compileOnly 'org.projectlombok:lombok:1.18.42'
23+
annotationProcessor 'org.projectlombok:lombok:1.18.42'
2424
}

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<idea-plugin>
22
<id>net.ashald.envfile</id>
33
<name>EnvFile</name>
4-
<version>3.5.0</version>
4+
<version>4.0.0</version>
55
<vendor email="envfile@ashald.net">Borys Pierov</vendor>
66

77
<description><![CDATA[
88
<h1>EnvFile</h1>
9-
<b>Compiled with Java 1.8</b>
9+
<b>Compiled with Java 16</b>
1010
<h2>
1111
<a href="https://github.com/Ashald/EnvFile">GitHub</a> |
1212
<a href="https://github.com/Ashald/EnvFile/issues">Issues</a>
@@ -38,13 +38,13 @@
3838
]]></description>
3939

4040
<change-notes><![CDATA[
41-
<a href="https://github.com/Ashald/EnvFile/tree/v3.4.2"><b>v3.4.1</b></a> (2022-10-04)
41+
<a href="https://github.com/Ashald/EnvFile/tree/v4.0.0"><b>v4.0.0</b></a> (2026-01-15)
4242
<br/>
4343
<br/>
4444
4545
<b>Fixed</b>:
4646
<ul>
47-
<li>Bump `org.apache.commons:commons-text` to `1.10.0'</li>
47+
<li>Compatibility with latest IDE version</li>
4848
</ul>
4949
5050
<br/>

0 commit comments

Comments
 (0)