diff --git a/README.md b/README.md index 80cee6f..3edd1ff 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Both the ScalaBuff generator and the generated Scala classes depend on Google's If you want to utilize ScalaBuff to generate your Scala classes from .proto sources, you'll need to either [download the source](https://github.com/SandroGrzicic/ScalaBuff/archive/master.zip) or download the packaged JAR for your Scala version from the Sonatype OSS repository. If you download the sources, you can easily run it from SBT. If you just want to use ScalaBuff-generated classes in your SBT-managed project, here's the dependency to add (located on the Sonatype OSS repository): `"net.sandrogrzicic" %% "scalabuff-runtime" % "[desired_version]"` -The latest release is **1.3.8** with support for Scala 2.9.1, 2.9.3, 2.10 and 2.11. +The latest release is **1.3.9** with support for Scala 2.10 and 2.11. If you'd like to use SBT with ScalaBuff to auto-generate Scala protobuf classes from .proto sources, try the [sbt-scalabuff project](https://github.com/sbt/sbt-scalabuff). diff --git a/project/ScalaBuffBuild.scala b/project/ScalaBuffBuild.scala index f8b51fd..518eb1c 100644 --- a/project/ScalaBuffBuild.scala +++ b/project/ScalaBuffBuild.scala @@ -22,7 +22,7 @@ object ScalaBuffBuild extends Build { lazy val buildSettings = Seq( name := "ScalaBuff", organization := "net.sandrogrzicic", - version := "1.3.8", + version := "1.3.9", scalaVersion := "2.10.4", logLevel := Level.Info ) @@ -56,7 +56,7 @@ object ScalaBuffBuild extends Build { Seq() }), - crossScalaVersions ++= Seq("2.9.3", "2.10.4", "2.11.0"), + crossScalaVersions ++= Seq("2.10.4", "2.11.2"), scalacOptions ++= Seq("-encoding", "utf8", "-unchecked", "-deprecation", "-Xlint"), scalacOptions ++=