Skip to content

Commit

Permalink
jump to v0.16.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tminglei committed Apr 10, 2018
1 parent 66fb70e commit 6cab8da
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,42 +194,42 @@ 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.16.0"
libraryDependencies += "com.github.tminglei" %% "slick-pg" % "0.16.1"
```

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

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

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

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

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

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

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


Expand All @@ -238,7 +238,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.16.0</version>
<version>0.16.1</version>
</dependency>
<!-- other addons if necessary -->
...
Expand Down
24 changes: 12 additions & 12 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ lazy val commonSettings = Seq(
organizationName := "slick-pg",
organization := "com.github.tminglei",
name := "slick-pg",
version := "0.16.0",
version := "0.16.1",

scalaVersion := "2.12.4",
crossScalaVersions := Seq("2.12.4", "2.11.12"),
scalaVersion := "2.12.5",
crossScalaVersions := Seq("2.12.5", "2.11.12"),
scalacOptions ++= Seq("-deprecation", "-feature",
"-language:implicitConversions",
"-language:reflectiveCalls",
Expand Down Expand Up @@ -56,14 +56,14 @@ 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.0.5" % "provided")
Seq("org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.0" % "provided")
case _ =>
Seq()
}
Seq (
"org.scala-lang" % "scala-reflect" % scalaVersion,
"com.typesafe.slick" %% "slick" % "3.2.2",
"org.postgresql" % "postgresql" % "42.2.0",
"com.typesafe.slick" %% "slick" % "3.2.3",
"org.postgresql" % "postgresql" % "42.2.2",
"org.slf4j" % "slf4j-simple" % "1.7.24" % "provided",
"org.scalatest" %% "scalatest" % "3.0.4" % "test"
) ++ extractedLibs
Expand Down Expand Up @@ -92,7 +92,7 @@ lazy val slickPgJoda = Project(id = "slick-pg_joda-time", base = file("./addons/
description := "Slick extensions for PostgreSQL - joda time module",
libraryDependencies := mainDependencies(scalaVersion.value) ++ Seq(
"joda-time" % "joda-time" % "2.9.9",
"org.joda" % "joda-convert" % "1.9.2"
"org.joda" % "joda-convert" % "2.0.1"
)
)
) dependsOn (slickPgCore)
Expand Down Expand Up @@ -124,7 +124,7 @@ lazy val slickPgPlayJson = Project(id = "slick-pg_play-json", base = file("./add
name := "slick-pg_play-json",
description := "Slick extensions for PostgreSQL - play-json module",
libraryDependencies := mainDependencies(scalaVersion.value) ++ Seq(
"com.typesafe.play" %% "play-json" % "2.6.8"
"com.typesafe.play" %% "play-json" % "2.6.9"
)
)
) dependsOn (slickPgCore)
Expand All @@ -144,9 +144,9 @@ lazy val slickPgCirceJson = Project(id = "slick-pg_circe-json", base = file("./a
name := "slick-pg_circe-json",
description := "Slick extensions for PostgreSQL - circe module",
libraryDependencies := mainDependencies(scalaVersion.value) ++ Seq(
"io.circe" %% "circe-core" % "0.9.0",
"io.circe" %% "circe-generic" % "0.9.0",
"io.circe" %% "circe-parser" % "0.9.0"
"io.circe" %% "circe-core" % "0.9.3",
"io.circe" %% "circe-generic" % "0.9.3",
"io.circe" %% "circe-parser" % "0.9.3"
)
)
) dependsOn (slickPgCore)
Expand All @@ -166,7 +166,7 @@ lazy val slickPgJawn = Project(id = "slick-pg_jawn", base = file("./addons/jawn"
name := "slick-pg_jawn",
description := "Slick extensions for PostgreSQL - jawn module",
libraryDependencies := mainDependencies(scalaVersion.value) ++ Seq(
"org.spire-math" %% "jawn-ast" % "0.11.0"
"org.spire-math" %% "jawn-ast" % "0.12.1"
)
)
) dependsOn (slickPgCore)
Expand Down

0 comments on commit 6cab8da

Please sign in to comment.