@@ -4,7 +4,7 @@ def scalacOptionsVersion(scalaVersion: String): Seq[String] = {
44 // switch to support our anonymous Bundle definitions:
55 // https://github.com/scala/bug/issues/10047
66 CrossVersion .partialVersion(scalaVersion) match {
7- case Some ((2 , scalaMajor : Int )) if scalaMajor < 12 => Seq ()
7+ case Some ((2 , scalaMajor : Long )) if scalaMajor < 12 => Seq ()
88 case _ => Seq (" -Xsource:2.11" )
99 }
1010 }
@@ -16,7 +16,7 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = {
1616 // Java 7 compatible code for Scala 2.11
1717 // for compatibility with old clients.
1818 CrossVersion .partialVersion(scalaVersion) match {
19- case Some ((2 , scalaMajor : Int )) if scalaMajor < 12 =>
19+ case Some ((2 , scalaMajor : Long )) if scalaMajor < 12 =>
2020 Seq (" -source" , " 1.7" , " -target" , " 1.7" )
2121 case _ =>
2222 Seq (" -source" , " 1.8" , " -target" , " 1.8" )
@@ -26,21 +26,21 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = {
2626
2727organization := " edu.berkeley.cs"
2828
29- version := " 3.0 .0"
29+ version := " 3.1 .0"
3030
3131name := " chisel-tutorial"
3232
33- scalaVersion := " 2.11.11 "
33+ scalaVersion := " 2.11.12 "
3434
35- crossScalaVersions := Seq (" 2.11.11 " , " 2.12.3 " )
35+ crossScalaVersions := Seq (" 2.11.12 " , " 2.12.4 " )
3636
3737scalacOptions ++= Seq (" -deprecation" , " -feature" , " -unchecked" , " -language:reflectiveCalls" )
3838
3939// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
40- // The following are the default development versions, not the "release" versions.
40+ // The following are the current "release" versions.
4141val defaultVersions = Map (
42- " chisel3" -> " 3.0 .+" ,
43- " chisel-iotesters" -> " 1.1 .+"
42+ " chisel3" -> " 3.1 .+" ,
43+ " chisel-iotesters" -> " 1.2 .+"
4444 )
4545
4646libraryDependencies ++= (Seq (" chisel3" ," chisel-iotesters" ).map {
0 commit comments