Skip to content

Commit 46f68df

Browse files
committed
build: Update Scala and SBT version
Update Scala version to 2.13.13 Update SBT version to 1.9.9 Update kind-projector version to 0.13.3 Minor fixs
1 parent 0dc8d9e commit 46f68df

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import sbtprotoc.ProtocPlugin.autoImport.PB
99
inThisBuild(
1010
Seq(
1111
organization := "io.iohk.atala",
12-
scalaVersion := "2.13.7",
12+
scalaVersion := "2.13.13",
1313
fork := true,
1414
run / connectInput := true,
1515
versionScheme := Some("semver-spec"),
@@ -193,7 +193,7 @@ lazy val commonSettings = Seq(
193193
"JetBrains Space Maven Repository" at "https://maven.pkg.jetbrains.space/public/p/kotlinx-coroutines/maven",
194194
libraryDependencies ++= Dependencies.scalatestDependencies,
195195
addCompilerPlugin(
196-
"org.typelevel" % "kind-projector" % "0.13.2" cross CrossVersion.full
196+
"org.typelevel" % "kind-projector" % "0.13.3" cross CrossVersion.full
197197
),
198198
Test / fork := true,
199199
Test / parallelExecution := false,

node/src/main/scala/io/iohk/atala/prism/node/logging/GeneralLoggableInstances.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import tofu.syntax.monoid.TofuSemigroupOps
1111
*/
1212
object GeneralLoggableInstances {
1313

14-
implicit val statusLoggable = new DictLoggable[Status] {
14+
implicit val statusLoggable: DictLoggable[Status] = new DictLoggable[Status] {
1515
override def fields[I, V, R, S](a: Status, i: I)(implicit r: LogRenderer[I, V, R, S]): R = {
1616
r.addString("grpc_status", a.toString, i)
1717
}

node/src/test/scala/io/iohk/atala/prism/node/NodeServiceSpec.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,8 +323,8 @@ class NodeServiceSpec
323323

324324
// This changes greatly, so just test something was set
325325
buildInfo.version must not be empty
326-
buildInfo.scalaVersion mustBe "2.13.7"
327-
buildInfo.sbtVersion mustBe "1.6.2"
326+
buildInfo.scalaVersion mustBe "2.13.13"
327+
buildInfo.sbtVersion mustBe "1.9.9"
328328
}
329329
}
330330

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 1.6.2
1+
sbt.version = 1.9.9

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.2")
2-
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.8")
2+
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.11")
33
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.1.22")
44
addSbtPlugin("io.kamon" % "sbt-kanela-runner" % "2.0.13")
55
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")

0 commit comments

Comments
 (0)