Skip to content

Commit

Permalink
jump to v0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tminglei committed Jan 11, 2014
1 parent e18b409 commit c42f425
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,23 @@ Slick-pg
- JSON
- `text` Search
- `postgis` Geometry
- Composite type (`basic`)

** _tested on `postgreSQL 9.3` with `Slick 1.0.1`._

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.1" % "0.2.2.2"
libraryDependencies += "com.github.tminglei" % "slick-pg_2.10.3" % "0.2.5"
```

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.1</artifactId>
<version>0.2.2.2</version>
<artifactId>slick-pg_2.10.3</artifactId>
<version>0.2.5</version>
</dependency>
```

Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependency>
</dependencies>
</project>
4 changes: 2 additions & 2 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ object SlickPgBuild extends Build {
lazy val coreSettings = Seq(
name := "slick-pg_core",
description := "Slick extensions for PostgreSQL - Core",
version := "0.2.0.1",
version := "0.2.5",
libraryDependencies := Seq(
"org.scala-lang" % "scala-reflect" % "2.10.3",
"com.typesafe.slick" % "slick_2.10" % "1.0.1",
Expand All @@ -72,7 +72,7 @@ object SlickPgBuild extends Build {
lazy val slickPgSettings = Seq(
name := "slick-pg",
description := "Slick extensions for PostgreSQL",
version := "0.2.2.2",
version := "0.2.5",
libraryDependencies := Seq(
"org.scala-lang" % "scala-reflect" % "2.10.3",
"com.typesafe.slick" % "slick_2.10" % "1.0.1",
Expand Down

0 comments on commit c42f425

Please sign in to comment.