Skip to content

Commit

Permalink
update metals (#935)
Browse files Browse the repository at this point in the history
  • Loading branch information
rochala authored Sep 7, 2023
1 parent 1f98248 commit cb83b6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ lazy val metalsRunner = project
maintainer := "scalacenter",
scalaVersion := ScalaVersions.stable3,
libraryDependencies ++= Seq(
"org.scalameta" % "metals" % "0.11.12" cross (CrossVersion.for3Use2_13),
"org.scalameta" % "metals" % "1.0.1" cross (CrossVersion.for3Use2_13),
"org.eclipse.lsp4j" % "org.eclipse.lsp4j" % "0.21.0",
"org.http4s" %% "http4s-ember-server" % "0.23.19",
"org.http4s" %% "http4s-ember-client" % "0.23.19",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class PresentationCompilers[F[_]: Async] {
private val serviceLoader: F[BlockingServiceLoader[F]] = Semaphore[F](1).map(BlockingServiceLoader.instance[F])
private val mtagsResolver = MtagsResolver.default()

val index = OnDemandSymbolIndex.empty()
val index = OnDemandSymbolIndex.empty()(using EmptyReportContext)
val docs = new Docstrings(index)

JdkSources().foreach(jdk => index.addSourceJar(jdk, Scala213))
Expand Down

0 comments on commit cb83b6d

Please sign in to comment.