Skip to content

Commit

Permalink
1.0 release update
Browse files Browse the repository at this point in the history
  • Loading branch information
jsuereth committed Sep 16, 2011
1 parent 7d47072 commit b3e1950
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Expand Up @@ -6,7 +6,7 @@ name := "scala-arm"

version := "1.0-SNAPSHOT"

scalaVersion := "2.8.1"
scalaVersion := "2.9.1"

autoCompilerPlugins := true

Expand All @@ -16,7 +16,7 @@ libraryDependencies <<= (scalaVersion, libraryDependencies) { (ver, deps) =>

scalacOptions += "-P:continuations:enable"

crossScalaVersions := Seq("2.9.1", "2.9.0-1", "2.9.0", "2.8.1", "2.8.0")
crossScalaVersions := Seq("2.9.1", "2.8.1", "2.8.0")

libraryDependencies += "junit" % "junit" % "4.5" % "test"

Expand Down
1 change: 1 addition & 0 deletions notes/1.0.markdown
Expand Up @@ -3,3 +3,4 @@ The scala-arm 1.0 release makes a few stabilizing changes to the API:
* Removed the CanSafelyTranslate implicit hook for map/flatMap methods. ManagedResource objects are now properly Monadic.
* The toTraversable method now takes implicit evidence that the resource is traversable. This can also take a function from the reosurce to a traversable.
* The Resource type trait now specifies which exceptions cannot be ignored vs. which ones can safely be captured temporarily to close a resource.
* Had to remove 2.9.0 and 2.9.0-1 versions temporarily due to strange scaladoc bug that was fixed in 2.9.1

0 comments on commit b3e1950

Please sign in to comment.