Skip to content

Commit

Permalink
bump up to Scala 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
vreuter committed Aug 22, 2024
1 parent c7498da commit a3f09f7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, ubuntu-20.04, macos-latest]
scala: [3.4.3]
scala: [3.5.0]
java:
- temurin@11
- temurin@17
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.2.0] - 2024-07-22
## Unreleased

### Changed
* Scala is now 3.5.0.

### Added
* `Area` and `MeanIntensity` data types, in a new subpackage--`measurement`--of the `roi` module.
Expand Down
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Dependencies.*

/* Core settings */
ThisBuild / scalaVersion := "3.4.3"
ThisBuild / scalaVersion := "3.5.0"
val groupId = "com.github.gerlichlab"
val projectName = "gerlib"
val rootPkg = s"at.ac.oeaw.imba.gerlich.$projectName"
Expand Down Expand Up @@ -82,6 +82,7 @@ lazy val imaging = defineModule("imaging")(project)
)

lazy val json = defineModule("json")(project)
.dependsOn(geometry, numeric)
.settings(
libraryDependencies ++= Seq(
uJson,
Expand All @@ -90,7 +91,7 @@ lazy val json = defineModule("json")(project)
)

lazy val numeric = defineModule("numeric")(project)
.dependsOn(json, pan)
.dependsOn(pan)
.settings(
libraryDependencies ++= Seq(
iron,
Expand Down

0 comments on commit a3f09f7

Please sign in to comment.