Skip to content

Commit 54b5ce3

Browse files
authored
Merge pull request #149 from Atry/scala-2.12.3-wip
Upgrade to Scala 2.12.3
2 parents b34ac6c + 5d1f3fb commit 54b5ce3

File tree

6 files changed

+9
-3
lines changed

6 files changed

+9
-3
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,4 +152,4 @@ lazy val unidoc =
152152

153153
organization in ThisBuild := "com.thoughtworks.deeplearning"
154154

155-
crossScalaVersions := Seq("2.11.11", "2.12.2")
155+
crossScalaVersions := Seq("2.11.11", "2.12.3")

plugins-Builtins/src/main/scala-2.12/com/thoughtworks/deeplearning/plugins/Builtins.scala

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,24 @@ trait Builtins
1414
with FloatTraining
1515
with FloatLiterals
1616
with FloatWeights
17+
with FloatLayers
18+
with CumulativeFloatLayers
1719
with DoubleTraining
1820
with DoubleLiterals
19-
with DoubleWeights {
21+
with DoubleWeights
22+
with DoubleLayers
23+
with CumulativeDoubleLayers {
2024

2125
trait ImplicitsApi
2226
extends super[Layers].ImplicitsApi
2327
with super[Weights].ImplicitsApi
2428
with super[Operators].ImplicitsApi
2529
with super[FloatTraining].ImplicitsApi
2630
with super[FloatLiterals].ImplicitsApi
31+
with super[FloatLayers].ImplicitsApi
2732
with super[DoubleTraining].ImplicitsApi
2833
with super[DoubleLiterals].ImplicitsApi
34+
with super[DoubleLayers].ImplicitsApi
2935

3036
type Implicits <: ImplicitsApi
3137

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
addSbtPlugin("com.thoughtworks.sbt-best-practice" % "sbt-best-practice" % "2.5.0")
22

3-
addSbtPlugin("com.thoughtworks.example" % "sbt-example" % "2.0.1")
3+
addSbtPlugin("com.thoughtworks.example" % "sbt-example" % "2.0.2")

0 commit comments

Comments
 (0)