@@ -3,27 +3,27 @@ lazy val root = project
33 .settings(
44 name := " programming-scala-3rd-ed-code-examples" ,
55 description := " Code examples for Programming Scala, Third Edition (O'Reilly)." ,
6- version := " 3.0.0-RC2-002 " ,
7- scalaVersion := " 3.0.0-RC1 " ,
6+ version := " 3.0.0-RC2-003 " ,
7+ scalaVersion := " 3.0.0-RC2 " ,
88 organization := " org.programming-scala" ,
99 organizationName := " ProgrammingScala" ,
1010 organizationHomepage := Some (url(" http://programming-scala.org" )),
1111 homepage := Some (url(" https://github.com/deanwampler/programming-scala-book-code-examples/" )),
1212 licenses += " Apache2" -> url(" http://www.apache.org/licenses/LICENSE-2.0" ),
1313 maxErrors := 10 ,
1414 libraryDependencies ++= Seq (
15- " com.typesafe.akka" %% " akka-actor-typed" % " 2.6.12 " ,
16- " com.typesafe.akka" %% " akka-slf4j" % " 2.6.12 " ,
15+ " com.typesafe.akka" %% " akka-actor-typed" % " 2.6.13 " ,
16+ " com.typesafe.akka" %% " akka-slf4j" % " 2.6.13 " ,
1717 // Map over this sequence of Scala 2.X libraries & call withDottyCompat(...):
1818 ).map(dep => dep.withDottyCompat(scalaVersion.value)) ++ Seq (
1919 // Libraries that already fully support Dotty/Scala 3:
20- " org.typelevel" %% " cats-core" % " 2.4.2 " ,
20+ " org.typelevel" %% " cats-core" % " 2.5.0 " ,
2121 " org.scala-lang" %% " scala3-staging" % scalaVersion.value,
22- " org.scala-lang.modules" %% " scala-parser-combinators" % " 1.2.0-M2 " ,
22+ " org.scala-lang.modules" %% " scala-parser-combinators" % " 1.2.0-RC1 " ,
2323 " ch.qos.logback" % " logback-classic" % " 1.2.3" ,
2424 " org.scalacheck" %% " scalacheck" % " 1.15.3" % Test ,
25- " org.scalameta" %% " munit" % " 0.7.22 " % Test ,
26- " org.scalameta" %% " munit-scalacheck" % " 0.7.22 " % Test
25+ " org.scalameta" %% " munit" % " 0.7.23 " % Test ,
26+ " org.scalameta" %% " munit-scalacheck" % " 0.7.23 " % Test
2727 ),
2828 testFrameworks += new TestFramework (" munit.Framework" ),
2929
0 commit comments