Skip to content

Commit 01cc975

Browse files
authored
Merge branch 'dev' into jh/#365-err-to-warn
2 parents 5be3283 + a323ddc commit 01cc975

File tree

6 files changed

+14
-11
lines changed

6 files changed

+14
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased/Snapshot]
88

9+
## [2.0.0] - 2021-05-21
10+
911
### Added
1012
- definition for a default input file directory structure
1113
- tarball utils to extract and compress files
@@ -86,5 +88,6 @@ coordinates or multiple exactly equal coordinates possible
8688
- CsvDataSource now stops trying to get an operator for empty operator uuid field in entities
8789
- CsvDataSource now parsing multiple geoJson strings correctly
8890

89-
[Unreleased/Snapshot]: https://github.com/ie3-institute/powersystemdatamodel/compare/1.1.0...HEAD
91+
[Unreleased/Snapshot]: https://github.com/ie3-institute/powersystemdatamodel/compare/2.0.0...HEAD
92+
[2.0.0]: https://github.com/ie3-institute/powersystemdatamodel/compare/1.1.0...2.0.0
9093
[1.1.0]: https://github.com/ie3-institute/powersystemdatamodel/compare/6a49bc514be8859ebd29a3595cd58cd000498f1e...1.1.0

Jenkinsfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ node {
150150
*/
151151
sh(
152152
script: """set +x && cd $projectName""" +
153-
''' set +x; ./gradlew clean javadoc -Dorg.gradle.java.home=/opt/java/openjdk''',
153+
''' set +x; ./gradlew clean javadoc -Dorg.gradle.java.home=/opt/java/openjdk''',
154154
returnStdout: true
155155
)
156156

@@ -706,8 +706,7 @@ def getBranchType(String branchName) {
706706
def main_pattern = ".*main"
707707
if (branchName =~ feature_pattern || branchName =~ dependabot_pattern) {
708708
return "feature"
709-
} else
710-
if (branchName =~ release_pattern) {
709+
} else if (branchName =~ release_pattern) {
711710
return "release"
712711
} else if (branchName =~ main_pattern) {
713712
return "main"

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ repositories {
5252

5353
dependencies {
5454
// ie³ power system utils
55-
compile 'com.github.ie3-institute:PowerSystemUtils:1.5.2'
55+
compile 'com.github.ie3-institute:PowerSystemUtils:1.5.3'
5656

5757
implementation 'tech.units:indriya:2.1.2'
5858

@@ -86,7 +86,7 @@ dependencies {
8686
runtimeOnly 'org.postgresql:postgresql:42.2.20' // postgresql jdbc driver required during runtime
8787

8888

89-
compile 'commons-io:commons-io:2.8.0' // I/O functionalities
89+
compile 'commons-io:commons-io:2.9.0' // I/O functionalities
9090
compile 'org.apache.commons:commons-compress:1.20' // I/O functionalities
9191
}
9292

gradle/scripts/tests.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
test {
22
useJUnitPlatform()
33
testLogging {
4-
events "skipped", "failed"
4+
events "skipped", "failed", "passed"
55
}
66
}
77

src/main/java/edu/ie3/datamodel/models/input/container/InputContainer.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@
66
package edu.ie3.datamodel.models.input.container;
77

88
import edu.ie3.datamodel.models.input.InputEntity;
9+
import java.io.Serializable;
910
import java.util.List;
1011

1112
/** Represents an aggregation of different entities */
12-
public interface InputContainer<T extends InputEntity> {
13+
public interface InputContainer<T extends InputEntity> extends Serializable {
1314

1415
/** @return unmodifiable List of all entities */
1516
List<T> allEntitiesAsList();

version.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#Generated by the Semver Plugin for Gradle
2-
#Fri May 21 18:09:22 CEST 2021
2+
#Fri May 21 09:47:39 CEST 2021
33
version.buildmeta=
44
version.major=2
5-
version.minor=0
5+
version.minor=1
66
version.patch=0
77
version.prerelease=
8-
version.semver=2.0.0
8+
version.semver=2.1.0

0 commit comments

Comments
 (0)