Skip to content

Commit

Permalink
Merge pull request #3 from cquiroz/next-version
Browse files Browse the repository at this point in the history
Library updates
  • Loading branch information
cquiroz authored Jul 5, 2018
2 parents e6962c4 + af39b47 commit 46e7103
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
14 changes: 7 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -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")),
Expand All @@ -28,7 +28,7 @@ lazy val commonSettings = Seq(
},
pomExtra := pomData,
pomIncludeRepository := { _ => false },
) ++ scalafixSettings
)

lazy val sbt_tzdb = project
.in(file("."))
Expand All @@ -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 =
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.1.0
sbt.version=1.1.6
2 changes: 0 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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")

0 comments on commit 46e7103

Please sign in to comment.