Skip to content

Commit

Permalink
jump to v0.17.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tminglei committed May 20, 2019
1 parent 5dd2927 commit 40d860f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,44 +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.2"
libraryDependencies += "com.github.tminglei" %% "slick-pg" % "0.17.3"
```

> If you need `joda-time` support, pls append dependency:
```scala
libraryDependencies += "com.github.tminglei" %% "slick-pg_joda-time" % "0.17.2"
libraryDependencies += "com.github.tminglei" %% "slick-pg_joda-time" % "0.17.3"
```

> If you need `jts` geom support, pls append dependency:
```scala
libraryDependencies += "com.github.tminglei" %% "slick-pg_jts" % "0.17.2"
libraryDependencies += "com.github.tminglei" %% "slick-pg_jts" % "0.17.3"
or
libraryDependencies += "com.github.tminglei" %% "slick-pg_jts_lt" % "0.17.2"
libraryDependencies += "com.github.tminglei" %% "slick-pg_jts_lt" % "0.17.3"
```

> If you need `json4s` support, pls append dependency:
```scala
libraryDependencies += "com.github.tminglei" %% "slick-pg_json4s" % "0.17.2"
libraryDependencies += "com.github.tminglei" %% "slick-pg_json4s" % "0.17.3"
```

> If you need `play-json` support, pls append dependency:
```scala
libraryDependencies += "com.github.tminglei" %% "slick-pg_play-json" % "0.17.2"
libraryDependencies += "com.github.tminglei" %% "slick-pg_play-json" % "0.17.3"
```

> If you need `spray-json` support, pls append dependency:
```scala
libraryDependencies += "com.github.tminglei" %% "slick-pg_spray-json" % "0.17.2"
libraryDependencies += "com.github.tminglei" %% "slick-pg_spray-json" % "0.17.3"
```

> If you need `argonaut json` support, pls append dependency:
```scala
libraryDependencies += "com.github.tminglei" %% "slick-pg_argonaut" % "0.17.2"
libraryDependencies += "com.github.tminglei" %% "slick-pg_argonaut" % "0.17.3"
```

> If you need `circe json` support, pls append dependency:
```scala
libraryDependencies += "com.github.tminglei" %% "slick-pg_circe-json" % "0.17.2"
libraryDependencies += "com.github.tminglei" %% "slick-pg_circe-json" % "0.17.3"
```


Expand All @@ -241,7 +241,7 @@ Or, in [maven](http://maven.apache.org/ "maven") project, you can add `slick-pg`
<dependency>
<groupId>com.github.tminglei</groupId>
<artifactId>slick-pg_2.12</artifactId>
<version>0.17.2</version>
<version>0.17.3</version>
</dependency>
<!-- other addons if necessary -->
...
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val commonSettings = Seq(
organizationName := "slick-pg",
organization := "com.github.tminglei",
name := "slick-pg",
version := "0.17.2",
version := "0.17.3",

scalaVersion := "2.12.8",
crossScalaVersions := Seq("2.12.8", "2.11.12"),
Expand Down Expand Up @@ -59,7 +59,7 @@ lazy val commonSettings = Seq(
def mainDependencies(scalaVersion: String) = {
val extractedLibs = CrossVersion.partialVersion(scalaVersion) match {
case Some((2, scalaMajor)) if scalaMajor >= 11 =>
Seq("org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.0" % "provided")
Seq("org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.2" % "provided")
case _ =>
Seq()
}
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ logLevel := Level.Warn
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"

// Add sbt PGP Plugin
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.1")

0 comments on commit 40d860f

Please sign in to comment.