Skip to content

Commit

Permalink
fix missing issue for #234 and jump to v0.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tminglei committed Feb 6, 2016
1 parent ab10076 commit a5fde30
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,47 +181,47 @@ 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.11.1"
libraryDependencies += "com.github.tminglei" %% "slick-pg" % "0.11.2"
```

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

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

> If you need `jdk8 date` support, pls append dependency:
```scala
libraryDependencies += "com.github.tminglei" %% "slick-pg_date2" % "0.11.1"
libraryDependencies += "com.github.tminglei" %% "slick-pg_date2" % "0.11.2"
```

> If you need `threeten-bp` support, pls append dependency:
```scala
libraryDependencies += "com.github.tminglei" %% "slick-pg_threeten" % "0.11.1"
libraryDependencies += "com.github.tminglei" %% "slick-pg_threeten" % "0.11.2"
```

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

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

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

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


Expand All @@ -230,7 +230,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.11</artifactId>
<version>0.11.1</version>
<version>0.11.2</version>
</dependency>
<!-- other addons if necessary -->
...
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ object SlickPgBuild extends Build {
organizationName := "slick-pg",
organization := "com.github.tminglei",
name := "slick-pg",
version := "0.11.1",
version := "0.11.2",

scalaVersion := "2.11.7",
crossScalaVersions := Seq("2.11.7", "2.10.6"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ trait PgRangeSupport extends range.PgRangeExtensions with utils.PgCommonJdbcType
def nextTimestampRange() = nextTimestampRangeOption().orNull
def nextTimestampRangeOption() = r.nextStringOption().map(mkRangeFn(toTimestamp))
def nextDateRange() = nextDateRangeOption().orNull
def nextDateRangeOption() = r.nextStringOption().map(toSQLDate)
def nextDateRangeOption() = r.nextStringOption().map(mkRangeFn(toSQLDate))
}

////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit a5fde30

Please sign in to comment.