File tree Expand file tree Collapse file tree 4 files changed +10
-8
lines changed Expand file tree Collapse file tree 4 files changed +10
-8
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 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 11# Generated by the Semver Plugin for Gradle
2- # Mon Sep 14 12:33:33 CEST 2020
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