diff --git a/README.md b/README.md index 5b27046..cbc935e 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ By restricting the avaliable timezones you can reduce your js size up to several add the plugin dependency to `project/plugins.sbt` for sbt 1.1.x ```scala -addSbtPlugin("io.github.cquiroz" % "sbt-tzdb" % "0.1.2") +addSbtPlugin("io.github.cquiroz" % "sbt-tzdb" % "0.1.3") ``` The plugin currently supports sbt 1.1.x. diff --git a/build.sbt b/build.sbt index 4e84bba..8f4319a 100644 --- a/build.sbt +++ b/build.sbt @@ -1,12 +1,12 @@ import sbt._ import sbt.io.Using -val scalaVer = "2.12.4" +val scalaVer = "2.12.6" lazy val commonSettings = Seq( name := "sbt-tzdb", description := "Sbt plugin to build custom timezone databases", - version := "0.1.2", + version := "0.1.3", organization := "io.github.cquiroz", homepage := Some(url("https://github.com/cquiroz/sbt-tzdb")), licenses := Seq("BSD 3-Clause License" -> url("https://opensource.org/licenses/BSD-3-Clause")), @@ -28,7 +28,7 @@ lazy val commonSettings = Seq( }, pomExtra := pomData, pomIncludeRepository := { _ => false }, -) ++ scalafixSettings +) lazy val sbt_tzdb = project .in(file(".")) @@ -37,12 +37,12 @@ lazy val sbt_tzdb = project name := "sbt-tzdb", sbtPlugin := true, libraryDependencies ++= Seq( - "io.github.cquiroz" %% "kuyfi" % "0.8.2", - "org.apache.commons" % "commons-compress" % "1.16.1", + "io.github.cquiroz" %% "kuyfi" % "0.8.3", + "org.apache.commons" % "commons-compress" % "1.17", "com.eed3si9n" %% "gigahorse-okhttp" % "0.3.1", - "com.github.pathikrit" %% "better-files" % "3.4.0" + "com.github.pathikrit" %% "better-files" % "3.5.0" ), - addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.22") + addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.24") ) lazy val pomData = diff --git a/project/build.properties b/project/build.properties index 8b697bb..d6e3507 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.1.0 +sbt.version=1.1.6 diff --git a/project/plugins.sbt b/project/plugins.sbt index 6cf7f61..6507ca0 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -3,5 +3,3 @@ import sbt.Keys._ addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.0") addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0") - -addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.5.10")