Skip to content

Commit

Permalink
Merge pull request #8 from cquiroz/dep-updates
Browse files Browse the repository at this point in the history
Dependency updates
  • Loading branch information
cquiroz authored Dec 4, 2018
2 parents 2b00169 + 361d66a commit 1e6e2a4
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes

## 0.3.1

* Dependency updates

## 0.3.0

* Update tzdb parser to support the latest tzdb changes on 2018f
Expand Down
4 changes: 2 additions & 2 deletions 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.3")
addSbtPlugin("io.github.cquiroz" % "sbt-tzdb" % "0.3.1")
```

The plugin currently supports sbt 1.1.x.
Expand All @@ -50,7 +50,7 @@ This only makes sense if you add `scala-java-time` as a dependency

```scala
libraryDependencies ++= Seq(
"io.github.cquiroz" %%% "scala-java-time" % "2.0.0-M13-SNAPSHOT"
"io.github.cquiroz" %%% "scala-java-time" % "2.0.0-RC1"
)
```

Expand Down
12 changes: 6 additions & 6 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.7"
val scalaVer = "2.12.8"

lazy val commonSettings = Seq(
name := "sbt-tzdb",
description := "Sbt plugin to build custom timezone databases",
version := "0.3.0",
version := "0.3.1",
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 Down Expand Up @@ -37,14 +37,14 @@ lazy val sbt_tzdb = project
name := "sbt-tzdb",
sbtPlugin := true,
libraryDependencies ++= Seq(
"io.github.cquiroz" %% "kuyfi" % "0.9.1",
"io.github.cquiroz" %% "kuyfi" % "0.9.2",
"org.apache.commons" % "commons-compress" % "1.18",
"com.eed3si9n" %% "gigahorse-okhttp" % "0.3.1",
"com.github.pathikrit" %% "better-files" % "3.6.0",
"org.typelevel" %% "cats-core" % "1.4.0",
"org.typelevel" %% "cats-effect" % "1.0.0"
"org.typelevel" %% "cats-core" % "1.5.0",
"org.typelevel" %% "cats-effect" % "1.1.0"
),
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.25")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.26")
)

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.6
sbt.version=1.2.7
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ import sbt.Keys._

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

addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.2")

0 comments on commit 1e6e2a4

Please sign in to comment.