Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased/Snapshot]

### Changed
- Updated to `scala3` [#251](https://github.com/ie3-institute/simonaAPI/issues/251)

### Updates
- Updated PSU to 3.1.0
- Updated PSDM to 7.0.0

## [0.8.0] - 2025-04-17

### Added
- Implementing auto-merge for dependabot PRs [#273](https://github.com/ie3-institute/simonaAPI/issues/273)
- Implemented GitHub Actions pipeline [#247](https://github.com/ie3-institute/simonaAPI/issues/247)
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ ext {
scriptsLocation = 'gradle' + File.separator + 'scripts' + File.separator // location of script plugins

// required for pekko
scalaVersion = "2.13"
scalaBinaryVersion = "2.13.16"
scalaVersion = '3'
scalaBinaryVersion = '3.6.4'
pekkoVersion = "1.1.3"
}

Expand Down Expand Up @@ -51,7 +51,7 @@ dependencies{
implementation 'tech.units:indriya:2.2.3' // quantities

// scala (needed for pekko)
implementation "org.scala-lang:scala-library:${scalaBinaryVersion}"
implementation "org.scala-lang:scala3-library_${scalaVersion}:${scalaBinaryVersion}"

//PSU
implementation('com.github.ie3-institute:PowerSystemUtils:3.1.0') {
Expand Down