Skip to content

Commit b27025a

Browse files
authored
Merge pull request #353 from ie3-institute/rel/jh/#351-v-2-1-0-SNAPSHOT
set version to 2.1.0
2 parents 8b20ff3 + d3f88ea commit b27025a

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
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"

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

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-
#Mon Sep 14 12:33:33 CEST 2020
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)