When I was releasing for scala 2.9.x
, I simply had this line in my build.sbt:
crossScalaVersions := Seq("2.9.0", "2.9.0-1", "2.9.1", "2.9.1-1", "2.9.2")
But now, scala 2.10
is out, and I'm confused. My intuition was that I should have something like this:
crossScalaVersions := Seq("2.10.0")
But I noticed, that when I have scala version set to 2.10.0
, sbt searches for artifacts ending with 2.10
, not 2.10.0
. What's going on here? What version should I use?
EDIT: Also, if I do publish-local
, the artifact also ends up being suffixed by "_2.10", instead of "_2.10.0".