diff --git a/README.md b/README.md index e932f99e..b777ddc1 100644 --- a/README.md +++ b/README.md @@ -168,6 +168,7 @@ Here's the related technical details: | `jawn json` Json | json | `jawn` v0.11.0 | | (TsQuery+TsVector) | `text` search | no 3rd party dependencies | | `jts` Geometry | `postgis` geometry | `jts` v1.14.0 | +| `locationtech's jts` Geometry | `postgis` geometry | locationtech's `jts` v1.16.0 | _**Warning:** When your work with time data that contain Timezone, be wary of your postgres configuration. By default `ZonedDateTime` in Java 8 contains more information than `timestamptz` in Postgres. As a consequence, when you store a `ZonedDateTime` you are not guaranteed to get the same timezone as the original class instance. Prefer `OffsetDateTime` instead. cf [Issue #248](https://github.com/tminglei/slick-pg/issues/248)_ @@ -194,42 +195,44 @@ Install ------- To use `slick-pg` in [sbt](http://www.scala-sbt.org/ "slick-sbt") project, add the following to your project file: ```scala -libraryDependencies += "com.github.tminglei" %% "slick-pg" % "0.17.0" +libraryDependencies += "com.github.tminglei" %% "slick-pg" % "0.17.1" ``` > If you need `joda-time` support, pls append dependency: ```scala -libraryDependencies += "com.github.tminglei" %% "slick-pg_joda-time" % "0.17.0" +libraryDependencies += "com.github.tminglei" %% "slick-pg_joda-time" % "0.17.1" ``` > If you need `jts` geom support, pls append dependency: ```scala -libraryDependencies += "com.github.tminglei" %% "slick-pg_jts" % "0.17.0" +libraryDependencies += "com.github.tminglei" %% "slick-pg_jts" % "0.17.1" +or +libraryDependencies += "com.github.tminglei" %% "slick-pg_jts_lt" % "0.17.1" ``` > If you need `json4s` support, pls append dependency: ```scala -libraryDependencies += "com.github.tminglei" %% "slick-pg_json4s" % "0.17.0" +libraryDependencies += "com.github.tminglei" %% "slick-pg_json4s" % "0.17.1" ``` > If you need `play-json` support, pls append dependency: ```scala -libraryDependencies += "com.github.tminglei" %% "slick-pg_play-json" % "0.17.0" +libraryDependencies += "com.github.tminglei" %% "slick-pg_play-json" % "0.17.1" ``` > If you need `spray-json` support, pls append dependency: ```scala -libraryDependencies += "com.github.tminglei" %% "slick-pg_spray-json" % "0.17.0" +libraryDependencies += "com.github.tminglei" %% "slick-pg_spray-json" % "0.17.1" ``` > If you need `argonaut json` support, pls append dependency: ```scala -libraryDependencies += "com.github.tminglei" %% "slick-pg_argonaut" % "0.17.0" +libraryDependencies += "com.github.tminglei" %% "slick-pg_argonaut" % "0.17.1" ``` > If you need `circe json` support, pls append dependency: ```scala -libraryDependencies += "com.github.tminglei" %% "slick-pg_circe-json" % "0.17.0" +libraryDependencies += "com.github.tminglei" %% "slick-pg_circe-json" % "0.17.1" ``` @@ -238,7 +241,7 @@ Or, in [maven](http://maven.apache.org/ "maven") project, you can add `slick-pg` com.github.tminglei slick-pg_2.12 - 0.17.0 + 0.17.1 ... diff --git a/build.sbt b/build.sbt index 033a53e3..114b5283 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ lazy val commonSettings = Seq( organizationName := "slick-pg", organization := "com.github.tminglei", name := "slick-pg", - version := "0.17.0", + version := "0.17.1", scalaVersion := "2.12.8", crossScalaVersions := Seq("2.12.8", "2.11.12"),