This is an automated email from the ASF dual-hosted git repository. mdedetrich pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-pekko.git
commit dc216add10340b659aacd9442e60993cd72a30f8 Author: Matthew de Detrich <[email protected]> AuthorDate: Fri Mar 24 15:19:07 2023 +0100 Update to Scala 3.3 Co-Authored-By: PJ Fanning <[email protected]> --- .../scala/docs/org/apache/pekko/typed/InteractionPatternsSpec.scala | 1 + project/Dependencies.scala | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/actor-typed-tests/src/test/scala/docs/org/apache/pekko/typed/InteractionPatternsSpec.scala b/actor-typed-tests/src/test/scala/docs/org/apache/pekko/typed/InteractionPatternsSpec.scala index 3820b433d5..8ba3d226bf 100644 --- a/actor-typed-tests/src/test/scala/docs/org/apache/pekko/typed/InteractionPatternsSpec.scala +++ b/actor-typed-tests/src/test/scala/docs/org/apache/pekko/typed/InteractionPatternsSpec.scala @@ -36,6 +36,7 @@ import org.scalatest.wordspec.AnyWordSpecLike // #per-session-child // dummy data types just for this sample case class Keys() + case class Wallet() // #per-session-child diff --git a/project/Dependencies.scala b/project/Dependencies.scala index ac1a3fc26c..6acb2f0c89 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -39,7 +39,9 @@ object Dependencies { val scala212Version = "2.12.17" val scala213Version = "2.13.10" - val scala3Version = "3.2.2" + // To get the fix for https://github.com/lampepfl/dotty/issues/13106 + // and restored static forwarders + val scala3Version = "3.3.0" val allScalaVersions = Seq(scala213Version, scala212Version, scala3Version) val reactiveStreamsVersion = "1.0.4" --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
