File tree Expand file tree Collapse file tree 4 files changed +21
-6
lines changed
Expand file tree Collapse file tree 4 files changed +21
-6
lines changed Original file line number Diff line number Diff line change 11version : 2
2+
3+ multi-ecosystem-groups :
4+ dependencies :
5+ schedule :
6+ interval : " weekly"
7+
28updates :
39 - package-ecosystem : " github-actions"
410 directory : " /"
5- schedule :
6- interval : " monthly"
11+ patterns : ["*"]
12+ multi-ecosystem-group : " dependencies"
13+
14+ - package-ecosystem : " gradle"
15+ directory : " /"
16+ patterns : ["*"]
17+ multi-ecosystem-group : " dependencies"
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
77## [ 0.4.0] - unreleased
88
9+ ## [ 0.3.1] - 2025-11-09
10+
11+ * [ PR #12 ] ( https://github.com/itsallcode/simple-process/pull/12 ) : Change Java version for release artifacts from Java 25 to Java 17
12+
913## [ 0.3.0] - 2025-11-02
1014
1115* [ PR #9 ] ( https://github.com/itsallcode/simple-process/pull/9 ) : Upgrade dependencies
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Add dependency to your Gradle project:
2828
2929``` groovy
3030dependencies {
31- implementation 'org.itsallcode:simple-process:0.3.0 '
31+ implementation 'org.itsallcode:simple-process:0.3.1 '
3232}
3333```
3434
@@ -38,7 +38,7 @@ Add dependency to your Maven project:
3838<dependency >
3939 <groupId >org.itsallcode</groupId >
4040 <artifactId >simple-process</artifactId >
41- <version >0.3.0 </version >
41+ <version >0.3.1 </version >
4242</dependency >
4343```
4444
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ plugins {
1111}
1212
1313group = ' org.itsallcode'
14- version = ' 0.3.0 '
14+ version = ' 0.3.1 '
1515
1616repositories {
1717 mavenCentral()
@@ -39,7 +39,7 @@ testing {
3939
4040java {
4141 toolchain {
42- def javaVersion = project. hasProperty(' javaVersion' ) ? project. getProperty(' javaVersion' ) : 25
42+ def javaVersion = project. hasProperty(' javaVersion' ) ? project. getProperty(' javaVersion' ) : 17
4343 languageVersion = JavaLanguageVersion . of(javaVersion)
4444 }
4545 withJavadocJar()
You can’t perform that action at this time.
0 commit comments