Skip to content

Commit

Permalink
bumped versions of libraries in core to solve #487 (#500)
Browse files Browse the repository at this point in the history
* bumped versions of libraries in core to solve #487
  • Loading branch information
lbialy authored May 24, 2024
1 parent 1314110 commit 7a0c24a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions core/project.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@
// -language:noAutoTupling // after https://github.com/VirtusLab/scala-cli/issues/2708

//> using dep "org.virtuslab::besom-json:0.4.0-SNAPSHOT"
//> using dep "com.lihaoyi::sourcecode:0.3.1"
//> using dep "com.google.protobuf:protobuf-java-util:3.24.4"
//> using dep "io.grpc:grpc-netty:1.57.2"
//> using dep "com.google.protobuf:protobuf-java-util:3.25.1"
//> using dep "io.grpc:grpc-netty:1.64.0"
//> using dep "io.netty:netty-transport-native-kqueue:4.1.100.Final"
//> using dep "io.netty:netty-transport-native-epoll:4.1.100.Final"
//> using dep "com.thesamet.scalapb::scalapb-runtime:0.11.14"
//> using dep "com.thesamet.scalapb::scalapb-runtime-grpc:0.11.14"
//> using dep "com.thesamet.scalapb::scalapb-runtime:0.11.15"
//> using dep "com.thesamet.scalapb::scalapb-runtime-grpc:0.11.15"
//> using dep "com.google.guava:guava:32.1.2-jre"
//> using dep "com.outr::scribe:3.11.3"
//> using dep "com.outr::scribe-file:3.11.3"
//> using dep "com.lihaoyi::pprint:0.6.6"
//> using test.dep "org.scalameta::munit:1.0.0-M10"
//> using dep "com.outr::scribe:3.13.5"
//> using dep "com.outr::scribe-file:3.13.5"
//> using dep "com.lihaoyi::sourcecode:0.4.1"
//> using dep "com.lihaoyi::pprint:0.9.0"
//> using test.dep "org.scalameta::munit:1.0.0"

//> using publish.name "besom-core"
//> using publish.organization "org.virtuslab"
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/scala/besom/internal/logging.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package besom.internal

import scribe.*, LoggerSupport.{apply => makeLogRecord}
import scribe.message.LoggableMessage
import scribe.data.{MDC => ScribeMDC}
import scribe.mdc.{MDC => ScribeMDC}
import sourcecode.{FileName, Line, Name, Pkg}
import scala.util.{NotGiven => Not}

Expand Down
4 changes: 2 additions & 2 deletions core/src/main/scala/besom/util/printer.scala
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ object printer
}
):

override def treeify(x: Any): Tree =
val result = super.treeify(x)
override def treeify(x: Any, escapeUnicode: Boolean, showFieldNames: Boolean): Tree =
val result = super.treeify(x, escapeUnicode, showFieldNames)
result match
case Tree.Apply(p, body: Iterator[Tree]) =>
Tree.Apply(
Expand Down

0 comments on commit 7a0c24a

Please sign in to comment.