Type stack stack and Scala 2.10

The scala 2.10 download page ( http://www.scala-lang.org/downloads ) says:

Distribution scala is also available in a simple, pre-integrated stack of Typesafe. Just download the Typesafe installer from the stack download page

But when I download it from http://typesafe.com/stack/download (current version 2.0.2), scala version 2.9 still exists. 2 ( not 2.10 ).

Am I loading a set of types from the wrong page or is scala 2.10 just missing? I could not find information on whether to integrate scala 2.10 into the current version of the stack.

+6
source share
2 answers

The Types stack includes Play2, which has not yet been released for Scala 2.10.

edit: Play 2.1, released in February 2013, supports Scala 2.10 .

+2
source

There is a release model in the type stack, which is mostly independent of Scala s. (See also this comment on the scala -user mailing list.)

Also note that when you use sbt to build and package Scala applications, you can easily specify Scala 2.10 in your build.sbt . (Unless, of course, you have dependencies that are not yet updated to 2.10.)

+2
source

All Articles