Skip to content

Commit

Permalink
Scalameta: update to v4.8.11
Browse files Browse the repository at this point in the history
Fix a standalone high-surrogate unicode character in a test.
  • Loading branch information
kitbellew committed Sep 26, 2023
1 parent 331326b commit 503255c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import org.portablescala.sbtplatformdeps.PlatformDepsPlugin.autoImport._

object Dependencies {
val metaconfigV = "0.11.1"
val scalametaV = "4.8.10"
val scalametaV = "4.8.11"
val scalacheckV = "1.17.0"
val coursier = "2.1.2"
val munitV = "0.7.29"
Expand Down
4 changes: 2 additions & 2 deletions scalafmt-tests/src/test/resources/test/Unicode.stat
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ println(s"\u001b[1;${color}m${message}\u001b[m")
object Foo {
// format: off
val nbsp = "\u00A0"
val test = s"${nbsp}\uD83D"
val test = s"${nbsp}\uc83D"
// format: on
}
>>>
object Foo {
// format: off
val nbsp = "\u00A0"
val test = s"${nbsp}\uD83D"
val test = s"${nbsp}\uc83D"
// format: on
}

0 comments on commit 503255c

Please sign in to comment.