Skip to content

Commit 07bf64e

Browse files
committed
Upgrade to scala 3.0.0-M3
1 parent f1c8bde commit 07bf64e

File tree

7 files changed

+129
-128
lines changed

7 files changed

+129
-128
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
lib_managed/
33
project/project
44
target/
5+
.bloop
6+
.bsp
57

68
# Worksheets (Eclipse or IntelliJ)
79
*.sc

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ unmanagedSourceDirectories in Compile ++= {
3535
val sourceDir = (sourceDirectory in Compile).value
3636
val extraFilesOpt = CrossVersion.partialVersion(scalaVersion.value) match {
3737
case Some((2, _)) => Some(sourceDir / "scala-2.x")
38-
case Some((0, _)) => Some(sourceDir / "scala-3.x")
38+
case Some((3, _)) => Some(sourceDir / "scala-3.x")
3939
case _ => None
4040
}
4141
extraFilesOpt.toSeq

project/Dependencies.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import sbt._
22

33
object Version {
44
val logback = "1.2.3"
5-
val mockito = "3.2.1.0"
6-
val dotty = "0.26.0-RC1"
5+
val mockito = "3.2.4.0-M1"
6+
val dotty = "3.0.0-M3"
77
val scala = "2.12.11"
88
val crossScala = List(scala, "2.11.12", "2.13.1", dotty)
9-
val scalaTest = "3.2.1"
9+
val scalaTest = "3.2.4-M1"
1010
val slf4j = "1.7.30"
1111
}
1212

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.3.13
1+
sbt.version=1.4.7

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.5")
1010

1111
addSbtPlugin("com.scalapenos" % "sbt-prompt" % "1.0.2")
1212

13-
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.4.1")
13+
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.3")

src/main/scala-3.x/com/typesafe/scalalogging/LoggerMacro.scala

Lines changed: 70 additions & 71 deletions
Large diffs are not rendered by default.

src/main/scala-3.x/com/typesafe/scalalogging/LoggerTakingImplicitMacro.scala

Lines changed: 51 additions & 51 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)