Skip to content

Commit 991977e

Browse files
authored
Merge branch 'dev' into ms/#53-switch-to-scala3
2 parents ddda1db + 2615c28 commit 991977e

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2727
- New scheduling protocol [#650](https://github.com/ie3-institute/simona/issues/650)
2828
- Replaced akka with pekko [#641](https://github.com/ie3-institute/simona/issues/641)
2929

30+
### Fixed
31+
- Removed a repeated line in the documentation of vn_simona config [#658](https://github.com/ie3-institute/simona/issues/658)
32+
- Removed version number "2.0" from the logo printed to console [#642](https://github.com/ie3-institute/simona/issues/642)
33+
3034
## [3.0.0] - 2023-08-07
3135

3236
### Added
@@ -123,6 +127,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
123127
- Fixed broken layout in RTD documentation [#500](https://github.com/ie3-institute/simona/issues/500)
124128
- Corrected tests in RefSystemTest [#560](https://github.com/ie3-institute/simona/issues/560)
125129
- Take log file event filters from `logback.xml` when defining the run log appender [#108](https://github.com/ie3-institute/simona/issues/108)
130+
- Fix rendering of references in documentation [#505](https://github.com/ie3-institute/simona/issues/505)
126131

127132
### Removed
128133
- Remove workaround for tscfg tmp directory [#178](https://github.com/ie3-institute/simona/issues/178)

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
id 'signing'
88
id 'maven-publish' // publish to a maven repo (local or mvn central, has to be defined)
99
id 'pmd' // code check, working on source code
10-
id 'com.diffplug.spotless' version '6.23.0'// code format
10+
id 'com.diffplug.spotless' version '6.23.3'// code format
1111
id "com.github.ben-manes.versions" version '0.50.0'
1212
id "de.undercouch.download" version "5.5.0" // downloads plugin
1313
id "kr.motd.sphinx" version "2.10.1" // documentation generation
@@ -101,12 +101,12 @@ dependencies {
101101

102102
/* logging */
103103
implementation "com.typesafe.scala-logging:scala-logging_${scalaVersion}:3.9.5" // pekko scala logging
104-
implementation "ch.qos.logback:logback-classic:1.4.13"
104+
implementation "ch.qos.logback:logback-classic:1.4.14"
105105

106106
/* testing */
107107
testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0'
108108
testImplementation 'org.scalatestplus:mockito-3-4_2.13:3.2.10.0'
109-
testImplementation 'org.mockito:mockito-core:5.7.0' // mocking framework
109+
testImplementation 'org.mockito:mockito-core:5.8.0' // mocking framework
110110
testImplementation "org.scalatest:scalatest_${scalaVersion}:3.2.17"
111111
testRuntimeOnly 'com.vladsch.flexmark:flexmark-all:0.64.8' //scalatest html output
112112
testImplementation group: 'org.pegdown', name: 'pegdown', version: '1.6.0'

docs/readthedocs/requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Sphinx==5.3.0
2-
sphinx-rtd-theme==1.3.0
1+
Sphinx==7.2.6
2+
sphinx-rtd-theme==2.0.0
33
sphinxcontrib-plantuml==0.27
4-
myst-parser==1.0.0
5-
markdown-it-py==2.2.0
4+
myst-parser==2.0.0
5+
markdown-it-py==3.0.0
66
sphinx-hoverxref==1.3.0
77
sphinxcontrib-bibtex==2.6.1

input/samples/vn_simona/vn_simona.conf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ include "../common/pekko.conf"
44
# ATTENTION: Do not change this config file directly but use it as a base for your personal delta config for the
55
# vn_simona scenario! Delta configs can be created by including the config you want to change
66
# parameters from via include <path-to-config> (e.g. include "input/samples/vn_simona/vn_simona.conf") at the
7-
# parameters from via include <path-to-config> (e.g. include "input/samples/vn_simona/vn_simona.conf") at the
87
# beginning of your config file and then just override the parameters you want to change!
98
#########
109

0 commit comments

Comments
 (0)