File tree Expand file tree Collapse file tree 6 files changed +14
-11
lines changed
src/main/java/edu/ie3/datamodel/models/input/container Expand file tree Collapse file tree 6 files changed +14
-11
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ repositories {
5252
5353dependencies {
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
Original file line number Diff line number Diff line change 11test {
22 useJUnitPlatform()
33 testLogging {
4- events " skipped" , " failed"
4+ events " skipped" , " failed" , " passed "
55 }
66}
77
Original file line number Diff line number Diff line change 66package edu .ie3 .datamodel .models .input .container ;
77
88import edu .ie3 .datamodel .models .input .InputEntity ;
9+ import java .io .Serializable ;
910import 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 ();
Original file line number Diff line number Diff line change 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
33version.buildmeta =
44version.major =2
5- version.minor =0
5+ version.minor =1
66version.patch =0
77version.prerelease =
8- version.semver =2.0 .0
8+ version.semver =2.1 .0
You can’t perform that action at this time.
0 commit comments