Skip to content

Commit d6e16dc

Browse files
authored
Merge pull request #487 from ie3-institute/rel/jh/#484-release_v2.1.0
rel/jh/#484-release_v2.1.0 for dev
2 parents cb5b378 + c741550 commit d6e16dc

File tree

4 files changed

+23
-11
lines changed

4 files changed

+23
-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.1.0] - 2022-01-05
10+
911
### Added
1012
- added `EvcsLocationType` support in `EvcsInput` and `EvcsInputFactory` [#406](https://github.com/ie3-institute/PowerSystemDataModel/issues/406)
1113
- Opportunity to close writer in `CsvFileSink`
@@ -117,7 +119,8 @@ coordinates or multiple exactly equal coordinates possible
117119
- CsvDataSource now stops trying to get an operator for empty operator uuid field in entities
118120
- CsvDataSource now parsing multiple geoJson strings correctly
119121

120-
[Unreleased/Snapshot]: https://github.com/ie3-institute/powersystemdatamodel/compare/2.0.1...HEAD
122+
[Unreleased/Snapshot]: https://github.com/ie3-institute/powersystemdatamodel/compare/2.1.0...HEAD
123+
[2.1.0]: https://github.com/ie3-institute/powersystemdatamodel/compare/2.0.1...2.1.0
121124
[2.0.1]: https://github.com/ie3-institute/powersystemdatamodel/compare/2.0.0...2.0.1
122125
[2.0.0]: https://github.com/ie3-institute/powersystemdatamodel/compare/1.1.0...2.0.0
123126
[1.1.0]: https://github.com/ie3-institute/powersystemdatamodel/compare/6a49bc514be8859ebd29a3595cd58cd000498f1e...1.1.0

build.gradle

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,24 @@ repositories {
4949
}
5050

5151
dependencies {
52+
constraints {
53+
implementation( 'junit:junit:4.13.2+'){
54+
because "CVE-2020-15250 - Temporary folder vulnerability - https://github.com/advisories/GHSA-269g-pwp5-87pp"
55+
}
56+
}
57+
5258
// ie³ power system utils
53-
implementation 'com.github.ie3-institute:PowerSystemUtils:1.5.3'
59+
implementation 'com.github.ie3-institute:PowerSystemUtils:1.6'
5460

5561
implementation 'tech.units:indriya:2.1.2'
5662

63+
implementation 'com.github.johanneshiry:OSMonaut:v1.1.1' // tmp pbf parse
64+
5765
// JTS Topology Suite for GeoPositions, License: EPL 1.0 / EDL 1.0
58-
implementation 'org.locationtech.jts:jts-core:1.18.2'
66+
implementation ('org.locationtech.jts:jts-core:1.18.2'){
67+
exclude group: 'junit', module: 'junit'
68+
}
69+
5970
implementation 'org.locationtech.jts.io:jts-io-common:1.18.2'
6071

6172
// Graphs
@@ -85,10 +96,8 @@ dependencies {
8596

8697
implementation 'commons-io:commons-io:2.11.0' // I/O functionalities
8798
implementation 'org.apache.commons:commons-compress:1.21' // I/O functionalities
88-
}
99+
implementation 'org.apache.commons:commons-lang3:3.12.0'
89100

90-
wrapper {
91-
gradleVersion = '6.0.1'
92101
}
93102

94103
tasks.withType(JavaCompile) {

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#Mon Dec 02 10:39:11 CET 2019
2-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip
2+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
33
distributionBase=GRADLE_USER_HOME
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists

version.properties

Lines changed: 4 additions & 4 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 09:47:39 CEST 2021
2+
#Wed Jan 05 11:45:20 CET 2022
33
version.buildmeta=
4-
version.major=2
5-
version.minor=1
4+
version.major=3
5+
version.minor=0
66
version.patch=0
77
version.prerelease=
8-
version.semver=2.1.0
8+
version.semver=3.0.0

0 commit comments

Comments
 (0)