Skip to content

Commit

Permalink
build: Update Scala and SBT version
Browse files Browse the repository at this point in the history
Update Scala version to 2.13.13
Update SBT version to 1.9.9
Update kind-projector version to 0.13.3
Minor fixs
  • Loading branch information
FabioPinheiro committed Apr 17, 2024
1 parent 0dc8d9e commit 46f68df
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import sbtprotoc.ProtocPlugin.autoImport.PB
inThisBuild(
Seq(
organization := "io.iohk.atala",
scalaVersion := "2.13.7",
scalaVersion := "2.13.13",
fork := true,
run / connectInput := true,
versionScheme := Some("semver-spec"),
Expand Down Expand Up @@ -193,7 +193,7 @@ lazy val commonSettings = Seq(
"JetBrains Space Maven Repository" at "https://maven.pkg.jetbrains.space/public/p/kotlinx-coroutines/maven",
libraryDependencies ++= Dependencies.scalatestDependencies,
addCompilerPlugin(
"org.typelevel" % "kind-projector" % "0.13.2" cross CrossVersion.full
"org.typelevel" % "kind-projector" % "0.13.3" cross CrossVersion.full
),
Test / fork := true,
Test / parallelExecution := false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import tofu.syntax.monoid.TofuSemigroupOps
*/
object GeneralLoggableInstances {

implicit val statusLoggable = new DictLoggable[Status] {
implicit val statusLoggable: DictLoggable[Status] = new DictLoggable[Status] {
override def fields[I, V, R, S](a: Status, i: I)(implicit r: LogRenderer[I, V, R, S]): R = {
r.addString("grpc_status", a.toString, i)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -323,8 +323,8 @@ class NodeServiceSpec

// This changes greatly, so just test something was set
buildInfo.version must not be empty
buildInfo.scalaVersion mustBe "2.13.7"
buildInfo.sbtVersion mustBe "1.6.2"
buildInfo.scalaVersion mustBe "2.13.13"
buildInfo.sbtVersion mustBe "1.9.9"
}
}

Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.6.2
sbt.version = 1.9.9
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.8")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.11")
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.1.22")
addSbtPlugin("io.kamon" % "sbt-kanela-runner" % "2.0.13")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
Expand Down

0 comments on commit 46f68df

Please sign in to comment.