@@ -4,7 +4,7 @@ def scalacOptionsVersion(scalaVersion: String): Seq[String] = {
4
4
// switch to support our anonymous Bundle definitions:
5
5
// https://github.com/scala/bug/issues/10047
6
6
CrossVersion .partialVersion(scalaVersion) match {
7
- case Some ((2 , scalaMajor : Int )) if scalaMajor < 12 => Seq ()
7
+ case Some ((2 , scalaMajor : Long )) if scalaMajor < 12 => Seq ()
8
8
case _ => Seq (" -Xsource:2.11" )
9
9
}
10
10
}
@@ -16,7 +16,7 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = {
16
16
// Java 7 compatible code for Scala 2.11
17
17
// for compatibility with old clients.
18
18
CrossVersion .partialVersion(scalaVersion) match {
19
- case Some ((2 , scalaMajor : Int )) if scalaMajor < 12 =>
19
+ case Some ((2 , scalaMajor : Long )) if scalaMajor < 12 =>
20
20
Seq (" -source" , " 1.7" , " -target" , " 1.7" )
21
21
case _ =>
22
22
Seq (" -source" , " 1.8" , " -target" , " 1.8" )
@@ -26,21 +26,21 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = {
26
26
27
27
organization := " edu.berkeley.cs"
28
28
29
- version := " 3.0 .0"
29
+ version := " 3.1 .0"
30
30
31
31
name := " chisel-tutorial"
32
32
33
- scalaVersion := " 2.11.11 "
33
+ scalaVersion := " 2.11.12 "
34
34
35
- crossScalaVersions := Seq (" 2.11.11 " , " 2.12.3 " )
35
+ crossScalaVersions := Seq (" 2.11.12 " , " 2.12.4 " )
36
36
37
37
scalacOptions ++= Seq (" -deprecation" , " -feature" , " -unchecked" , " -language:reflectiveCalls" )
38
38
39
39
// 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.
41
41
val defaultVersions = Map (
42
- " chisel3" -> " 3.0 .+" ,
43
- " chisel-iotesters" -> " 1.1 .+"
42
+ " chisel3" -> " 3.1 .+" ,
43
+ " chisel-iotesters" -> " 1.2 .+"
44
44
)
45
45
46
46
libraryDependencies ++= (Seq (" chisel3" ," chisel-iotesters" ).map {
0 commit comments