Skip to content

Commit f18d6fa

Browse files
committed
Release v4.0.0
1 parent b5c6403 commit f18d6fa

File tree

6 files changed

+15
-14
lines changed

6 files changed

+15
-14
lines changed

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
}

0 commit comments

Comments
 (0)