Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): Update bloop-config from 2.0.0 to 2.0.2 #2356

Merged
merged 2 commits into from
Jun 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions frontend/src/test/scala/bloop/LoadProjectSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class LoadProjectSpec extends BloopHelpers {
@Test def LoadJavaProject(): Unit = {
// Make sure that when no scala setup is configured the project load succeeds (and no scala instance is defined)
val logger = new RecordingLogger()
val config0 = Config.File.dummyForTests
val config0 = Config.File.dummyForTests("JVM")
val project = config0.project
val configWithNoScala = config0.copy(config0.version, project.copy(scala = None))
val origin = TestUtil.syntheticOriginFor(AbsolutePath.completelyUnsafe(""))
Expand All @@ -25,7 +25,7 @@ class LoadProjectSpec extends BloopHelpers {

@Test def CustomWorkingDirectory(): Unit = {
val logger = new RecordingLogger()
val dummyForTest = Config.File.dummyForTests
val dummyForTest = Config.File.dummyForTests("JVM")
val origin = TestUtil.syntheticOriginFor(AbsolutePath.completelyUnsafe(""))
val project = Project.fromConfig(dummyForTest, origin, logger)
assert(
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ object Dependencies {
val snailgunVersion = "0.4.0"
val ztExecVersion = "1.12"
val debugAdapterVersion = "4.1.1"
val bloopConfigVersion = "2.0.0"
val bloopConfigVersion = "2.0.2"
val semanticdbVersion = "4.8.15"
val zinc = "org.scala-sbt" %% "zinc" % zincVersion
val bsp4s = "ch.epfl.scala" %% "bsp4s" % bspVersion
Expand Down
Loading