Skip to content

Commit c21ca47

Browse files
authored
Merge pull request #93 from cquiroz/release2
Last minute fixes
2 parents fddfc72 + 943977a commit c21ca47

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ lazy val commonSettings = Seq(
2121
scalaVersion := scalaVer,
2222
crossScalaVersions := {
2323
if (scalaJSVersion.startsWith("0.6")) {
24-
Seq("2.10.7", "2.11.12", "2.12.7", "2.13.0-M5")
24+
Seq("2.10.7", "2.11.12", "2.12.8", "2.13.0-M5")
2525
} else {
26-
Seq("2.11.12", "2.12.7", "2.13.0-M5")
26+
Seq("2.11.12", "2.12.8", "2.13.0-M5")
2727
}
2828
},
2929
scalacOptions ++= Seq(

core/js/src/main/scala/java/util/TimeZone.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ object TimeZone {
2929
// This is supported since EcmaScript 1
3030
def offsetInMillis: Int = {
3131
val browserDate = new scalajs.js.Date()
32-
browserDate.getTimezoneOffset() * 60 * 1000
32+
browserDate.getTimezoneOffset().toInt * 60 * 1000
3333
}
3434

3535
def timeZone: String = {

project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
addSbtPlugin("com.47deg" % "sbt-microsites" % "0.7.15")
2+
addSbtPlugin("com.47deg" % "sbt-microsites" % "0.7.27")
33

44
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.0")
55

0 commit comments

Comments
 (0)