Skip to content

Commit

Permalink
jump to v0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tminglei committed Apr 25, 2016
1 parent f07be74 commit 42dd856
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ sudo: required
language: scala
scala:
- 2.10.6
- 2.11.7
- 2.11.8
jdk:
- oraclejdk8
before_install:
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,52 +186,52 @@ 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.12.2"
libraryDependencies += "com.github.tminglei" %% "slick-pg" % "0.13.0"
```

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

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

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

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

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

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

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

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

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


Expand All @@ -240,7 +240,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.12.2</version>
<version>0.13.0</version>
</dependency>
<!-- other addons if necessary -->
...
Expand Down
6 changes: 3 additions & 3 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ object SlickPgBuild extends Build {
organizationName := "slick-pg",
organization := "com.github.tminglei",
name := "slick-pg",
version := "0.12.2",
version := "0.13.0",

scalaVersion := "2.11.7",
crossScalaVersions := Seq("2.11.7", "2.10.6"),
scalaVersion := "2.11.8",
crossScalaVersions := Seq("2.11.8", "2.10.6"),
scalacOptions ++= Seq("-deprecation", "-feature",
"-language:implicitConversions",
"-language:reflectiveCalls",
Expand Down

0 comments on commit 42dd856

Please sign in to comment.