Skip to content

Commit

Permalink
upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
barryoneill committed Oct 10, 2024
1 parent 4fd1631 commit a8e44ba
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
version=3.6.1
version=3.8.3

maxColumn = 140
style = default
align.preset = more

runner.dialect = scala213source3
fileOverride {
"glob:**/scala-3.0+/**" { runner.dialect = scala3 }
"glob:**/scala-3/**" { runner.dialect = scala3 }
}

danglingParentheses.preset = true
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
lazy val scala213 = "2.13.14"
lazy val scala3 = "3.3.3"
lazy val scala213 = "2.13.15"
lazy val scala3 = "3.3.4"

lazy val root = project
.in(file("."))
Expand Down
8 changes: 4 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import sbt.*
//noinspection TypeAnnotation
object Dependencies {

val Compat = libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.11.0"
val Circe = libraryDependencies += "io.circe" %% "circe-parser" % "0.14.9"
val Compat = libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.12.0"
val Circe = libraryDependencies += "io.circe" %% "circe-parser" % "0.14.10"
val Scanamo = libraryDependencies += "org.scanamo" %% "scanamo" % "2.0.0"
val ScalaTest = libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.17" % "test"
val scalacheck = libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.17.0" % "test"
val ScalaTest = libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % "test"
val scalacheck = libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.18.1" % "test"
}
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.9.9
sbt.version=1.10.2

0 comments on commit a8e44ba

Please sign in to comment.