File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed
almond/src/main/scala/plotly Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,6 @@ stages:
16
16
jobs :
17
17
include :
18
18
- scala : 2.11.12
19
- - scala : 2.12.7
19
+ - scala : 2.12.8
20
20
- stage : release
21
21
script : sbt ci-release
Original file line number Diff line number Diff line change @@ -95,7 +95,8 @@ object Almond {
95
95
div0
96
96
}
97
97
98
- def randomDiv () = " plot-" + math.abs(Random .nextInt().toLong)
98
+ def randomDiv (): String =
99
+ almond.api.helpers.Display .newDiv(" plot-" )
99
100
100
101
def plot (
101
102
data : Seq [Trace ],
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ object Deps {
7
7
8
8
import Def .setting
9
9
10
- def almondScalaApi = " sh.almond" % " scala-kernel-api" % " 0.1.9 " cross CrossVersion .full
10
+ def almondScalaApi = " sh.almond" % " scala-kernel-api" % " 0.2.1 " cross CrossVersion .full
11
11
def argonautShapeless = setting(" com.github.alexarchambault" %%% " argonaut-shapeless_6.2" % " 1.2.0-M8" )
12
12
def jodaTime = " joda-time" % " joda-time" % " 2.9.1"
13
13
def rhino = " org.mozilla" % " rhino" % " 1.7.10"
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ object Settings {
85
85
sourceGenerators.in(Compile ) += customSourceGenerators.taskValue
86
86
)
87
87
88
- private val scala212 = " 2.12.7 "
88
+ private val scala212 = " 2.12.8 "
89
89
private val scala211 = " 2.11.12"
90
90
91
91
lazy val shared = Seq (
@@ -99,7 +99,8 @@ object Settings {
99
99
},
100
100
resolvers ++= Seq (
101
101
" Webjars Bintray" at " https://dl.bintray.com/webjars/maven/" ,
102
- Resolver .sonatypeRepo(" releases" )
102
+ Resolver .sonatypeRepo(" releases" ),
103
+ " jitpack" at " https://jitpack.io"
103
104
)
104
105
)
105
106
You can’t perform that action at this time.
0 commit comments