Skip to content

Commit

Permalink
Merge pull request #358 from scala-steward/update/scala-library-2.13.13
Browse files Browse the repository at this point in the history
build(deps): bump scala-library from 2.13.12 to 2.13.13
  • Loading branch information
tkrs committed Mar 25, 2024
2 parents 11a9529 + 7ea808b commit 961438d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion modules/benchmark/src/test/scala/mess/bench/Bench.scala
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ object Foo {
9843720,
97693437922040L,
"abcdefghijklmnopqrstmvwxyz",
true,
yoda = true,
0.2387430
)
}
Expand Down
4 changes: 2 additions & 2 deletions modules/core/src/main/scala/mess/Fmt.scala
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ object Fmt {
def apply(value: Boolean): MBool =
if (value) True else False

case object True extends MBool(true)
case object False extends MBool(false)
case object True extends MBool(value = true)
case object False extends MBool(value = false)
}

sealed trait MNumber extends Fmt {
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import sbt._
object Dependencies {
val Ver = new {
val scala3 = "3.3.3"
val `scala2.13` = "2.13.12"
val `scala2.13` = "2.13.13"
val `scala2.12` = "2.12.19"

val organizeImports = "0.5.0"
Expand Down

0 comments on commit 961438d

Please sign in to comment.