Skip to content

Commit 29ab758

Browse files
Merge branch 'dev' into pp/#1521-align-temperature-processing-of-cosmo-and-icon-timebasedweathervaluefactories
2 parents 224eb97 + 9048988 commit 29ab758

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,18 @@ jobs:
2626

2727
steps:
2828
- name: Checkout Source
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030
with:
3131
fetch-depth: 0
3232

3333
- name: Setup Java
34-
uses: actions/setup-java@v4
34+
uses: actions/setup-java@v5
3535
with:
3636
distribution: 'temurin'
3737
java-version: 21
3838

3939
- name: Setup Gradle
40-
uses: gradle/actions/setup-gradle@v4
40+
uses: gradle/actions/setup-gradle@v5
4141

4242
- name: Check Branch
4343
run: |

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3434
- Refactor CSV handling into shared file-based infrastructure. [#1450](https://github.com/ie3-institute/PowerSystemDataModel/issues/1445)
3535
- Change `testcontainers` to v2 [#1496](https://github.com/ie3-institute/PowerSystemDataModel/issues/1496)
3636
- Update thermal input documentation [#1506](https://github.com/ie3-institute/PowerSystemDataModel/issues/1506)
37+
- Update CI-Pipeline [#1527](https://github.com/ie3-institute/PowerSystemDataModel/issues/1527)
38+
- Update `gradle` to 9.3.0 [#1526](https://github.com/ie3-institute/PowerSystemDataModel/issues/1526)
39+
- Fix update of `gradle` [#1529](https://github.com/ie3-institute/PowerSystemDataModel/issues/1529)
40+
- Reintroduce `gradlew.bat` [#1531](https://github.com/ie3-institute/PowerSystemDataModel/issues/1531)
3741

3842
## [8.1.0] - 2025-07-25
3943

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id 'maven-publish'
55
id 'signing'
66
id 'pmd' // code check, working on source code
7-
id 'com.diffplug.spotless' version '8.1.0' //code format
7+
id 'com.diffplug.spotless' version '8.2.1' //code format
88
id 'com.github.spotbugs' version '6.4.8' // code check, working on byte code
99
id 'de.undercouch.download' version '5.6.0'
1010
id 'kr.motd.sphinx' version '2.10.1' // documentation generation
@@ -81,7 +81,7 @@ dependencies {
8181
testImplementation "org.junit.platform:junit-platform-launcher:$junitVersion"
8282
testImplementation "org.junit.jupiter:junit-jupiter:$junitVersion"
8383
testImplementation "org.spockframework:spock-core:2.3-groovy-$groovyVersion"
84-
testImplementation 'org.objenesis:objenesis:3.4' // Mock creation with constructor parameters
84+
testImplementation 'org.objenesis:objenesis:3.5' // Mock creation with constructor parameters
8585
testImplementation 'net.bytebuddy:byte-buddy:1.18.4' // Mocks of classes
8686

8787
// testcontainers (docker framework for testing)

gradle/wrapper/gradle-wrapper.jar

2.41 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 2 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)