Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tminglei committed Jan 25, 2014
1 parent 6263bf8 commit 45b1c6b
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ 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_2.10.3" % "0.2.6"
libraryDependencies += "com.github.tminglei" % "slick-pg_2.10.3" % "0.2.7"
```

Or, in [maven](http://maven.apache.org/ "maven") project, you can add `slick-pg` to your `pom.xml` like this:
```xml
<dependency>
<groupId>com.github.tminglei</groupId>
<artifactId>slick-pg_2.10.3</artifactId>
<version>0.2.6</version>
<version>0.2.7</version>
</dependency>
```

Expand Down Expand Up @@ -118,16 +118,16 @@ Here's the related technical details:
####Built in supported type/mappers:
| scala Type | pg Type |
| ----------------------------------- | --------------------- |
| List[T] | Pg ARRAY |
| sql.Date/Time/Timestamp + tminglei.slickpg.Interval | Pg Date/Time |
| jada.time.LocalDate/LocalTime/LocalDateTime/Period | Pg Date/Time |
| threeten.bp.LocalDate/LocalTime/LocalDateTime/Duration | Pg Date/Time |
| tminglei.slickpg.Range[T] | Pg Range |
| Map[String,String] | Pg HStore |
| json4s JValue | Pg JSON |
| play-json JsValue | Pg JSON |
| (TsQuery+TsVector) | Pg `text` Search |
| jts.geom.Geometry | Pg `postgis` Geometry |
| List[T] | ARRAY |
| sql Date<br> Time<br> Timestamp<br> slickpg Interval<br> Calendar | date<br> time<br> timestamp<br> interval<br> timestamptz |
| jada LocalDate<br> LocalTime<br> LocalDateTime<br> Period<br> DateTime | date<br> time<br> timestamp<br> interval<br> timestamptz |
| threeten.bp LocalDate<br> LocalTime<br> LocalDateTime<br> Duration<br> ZonedDateTime | date<br> time<br> timestamp<br> interval<br> timestamptz |
| slickpg Range[T] | range |
| Map[String,String] | hstore |
| json4s JValue | json |
| play-json JsValue | json |
| (TsQuery+TsVector) | `text` search |
| jts Geometry | `postgis` geometry |


Build instructions
Expand Down Expand Up @@ -166,8 +166,9 @@ Support details

Version history
---------------
v0.2.6 (17-Jan-2014):
1) add play-json support
v0.2.6-7 (25-Jan-2014):
1) add play-json support
2) add timestamp with time zone support

v0.2.5 (10-Jan-2014):
1) add basic composite type support
Expand Down

0 comments on commit 45b1c6b

Please sign in to comment.