Or a release candidate? My google-fu fails me.

link|improve this question

Scala 2.8.0 was released today: scala-lang.org/node/7009 – Scott Morrison Jul 14 '10 at 16:52
feedback

closed as too localized by Robert Harvey Jan 19 at 4:12

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

5 Answers

up vote 10 down vote accepted

This is a little out of date, but gives a rough idea:

http://www.nabble.com/Re%3A-Any-guesstimated-release-dates-for-2.8-final--p24919161.html

Based on my experience with the nightlies, and porting some code to 2.8, I would add about 2 months to those estimates. You can get a feel for the activity here:

https: // lampsvn.epfl.ch/trac/scala/timeline

2.8 is a big release, including:

  • unnested packages
  • new collections library
    • hashCode() of mutable collections now throws Unhashable
  • new arrays
  • named/default params
    • case classes generate copy() methods
  • @specialised
  • fixed equality / hash code handling across primitives and boxed primitives
  • RichString replaced by WrappedString
    • so that "abc".reverse.reverse == "abc"
  • ability to control annotation targeting (i.e. field, getter or setter; class or constructor)
  • support for nested annotations
  • delimited continuations compiler plugin
  • better compiler support for the Eclipse Scala Plugin
  • refactored actors implementation
  • refactored pattern matcher implementation
  • tweaked rules for implicits
  • many other bug fixes...

Which is to say that it is likely to take a few release candidates to reach the elusive 2.8.0 status.

link|improve this answer
Update Jan 18 2010: The beta release is imminent, so I was about a month or two short with my guess. But it will be worth the wait! – retronym Jan 18 '10 at 14:39
1  
-1 Man, I was really wrong! – retronym Jul 11 '10 at 8:18
feedback

Ask the Scala mailing list, Grasshopper.

http://www.scala-lang.org/node/199

link|improve this answer
In particular, you can browse scala-internals here <news.gmane.org/gmane.comp.lang.scala.internals>;. All the release candidates are announced there. – Scott Morrison Dec 20 '09 at 16:59
feedback

2.8.0 Beta 1 Release Candidate 4 was just released. They're getting there!

link|improve this answer
feedback

That's because no firm dates have been set.

link|improve this answer
feedback

I don't think any release date has been set. 2.8 is a big release though, so don't hold your breath.

In the mean time, you can get a nightly build. I've been using the nightlies for several months, and they work pretty well. Before downloading a nightly though, make sure you check the Hudson server to make sure the build actually succeeded.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.