Skip to content

Commit b0c43b6

Browse files
author
Dean Wampler
committed
Bumped to RC3
1 parent f76c139 commit b0c43b6

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
| November 25, 2020 | First Scala `3.0.0-M2` milestone changes |
2323
| December 19, 2020 | First Scala `3.0.0-M3` milestone changes |
2424
| February 21, 2021 | Scala `3.0.0-RC1` updates |
25+
| April 3, 2021 | Scala `3.0.0-RC2` updates |
26+
| April 24, 2021 | Scala `3.0.0-RC3` updates |
2527

2628
[![Join the chat at https://gitter.im/deanwampler/programming-scala-book-code-examples](https://badges.gitter.im/deanwampler/programming-scala-book-code-examples.svg)](https://gitter.im/deanwampler/programming-scala-book-code-examples?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2729

build.sbt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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-005",
7-
scalaVersion := "3.0.0-RC2",
6+
version := "3.0.0-RC3-001",
7+
scalaVersion := "3.0.0-RC3",
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.13",
16-
"com.typesafe.akka" %% "akka-slf4j" % "2.6.13",
15+
"com.typesafe.akka" %% "akka-actor-typed" % "2.6.14",
16+
"com.typesafe.akka" %% "akka-slf4j" % "2.6.14",
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.5.0",
20+
"org.typelevel" %% "cats-core" % "2.6.0",
2121
"org.scala-lang" %% "scala3-staging" % scalaVersion.value,
22-
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.2.0-RC1",
22+
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.2.0-RC2",
2323
"ch.qos.logback" % "logback-classic" % "1.2.3",
2424
"org.scalacheck" %% "scalacheck" % "1.15.3" % Test,
25-
"org.scalameta" %% "munit" % "0.7.23" % Test,
26-
"org.scalameta" %% "munit-scalacheck" % "0.7.23" % Test
25+
"org.scalameta" %% "munit" % "0.7.25" % Test,
26+
"org.scalameta" %% "munit-scalacheck" % "0.7.25" % Test
2727
),
2828

2929
// For Scala 3 (Dotty)

src/script/scala/progscala3/patternmatching/Matchable.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
val iarray = IArray(1,2,3,4,5)
55
iarray match
6-
case a: Array[Int] => a(2) = 300
6+
case a: Array[Int] => a(2) = 300 // Scala 3 warning!!
77
println(iarray)
88
// end::iarray[]
99

0 commit comments

Comments
 (0)