Skip to content

Commit

Permalink
Setting version to 2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Quill CI committed Nov 28, 2017
1 parent 9052952 commit 49d0ae2
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions README.md
Expand Up @@ -1338,7 +1338,7 @@ Quill provides a fully type-safe way to use Spark's highly-optimized SQL engine.
### sbt dependency
```
libraryDependencies ++= Seq(
"io.getquill" %% "quill-spark" % "2.3.1-SNAPSHOT"
"io.getquill" %% "quill-spark" % "2.3.1"
)
```

Expand Down Expand Up @@ -1464,7 +1464,7 @@ The body of `transaction` can contain calls to other methods and multiple `run`
```
libraryDependencies ++= Seq(
"mysql" % "mysql-connector-java" % "5.1.38",
"io.getquill" %% "quill-jdbc" % "2.3.1-SNAPSHOT"
"io.getquill" %% "quill-jdbc" % "2.3.1"
)
```

Expand All @@ -1491,7 +1491,7 @@ ctx.connectionTimeout=30000
```
libraryDependencies ++= Seq(
"org.postgresql" % "postgresql" % "9.4.1208",
"io.getquill" %% "quill-jdbc" % "2.3.1-SNAPSHOT"
"io.getquill" %% "quill-jdbc" % "2.3.1"
)
```

Expand All @@ -1517,7 +1517,7 @@ ctx.connectionTimeout=30000
```
libraryDependencies ++= Seq(
"org.xerial" % "sqlite-jdbc" % "3.18.0",
"io.getquill" %% "quill-jdbc" % "2.3.1-SNAPSHOT"
"io.getquill" %% "quill-jdbc" % "2.3.1"
)
```

Expand All @@ -1538,7 +1538,7 @@ ctx.jdbcUrl=jdbc:sqlite:/path/to/db/file.db
```
libraryDependencies ++= Seq(
"com.h2database" % "h2" % "1.4.192",
"io.getquill" %% "quill-jdbc" % "2.3.1-SNAPSHOT"
"io.getquill" %% "quill-jdbc" % "2.3.1"
)
```

Expand All @@ -1560,7 +1560,7 @@ ctx.dataSource.user=sa
```
libraryDependencies ++= Seq(
"com.microsoft.sqlserver" % "mssql-jdbc" % "6.1.7.jre8-preview",
"io.getquill" %% "quill-jdbc" % "2.3.1-SNAPSHOT"
"io.getquill" %% "quill-jdbc" % "2.3.1"
)
```

Expand Down Expand Up @@ -1665,7 +1665,7 @@ ctx.queryTimeout=10m
#### sbt dependencies
```
libraryDependencies ++= Seq(
"io.getquill" %% "quill-async-mysql" % "2.3.1-SNAPSHOT"
"io.getquill" %% "quill-async-mysql" % "2.3.1"
)
```

Expand All @@ -1689,7 +1689,7 @@ ctx.url=mysql://host:3306/database?user=root&password=root
#### sbt dependencies
```
libraryDependencies ++= Seq(
"io.getquill" %% "quill-async-postgres" % "2.3.1-SNAPSHOT"
"io.getquill" %% "quill-async-postgres" % "2.3.1"
)
```

Expand Down Expand Up @@ -1726,7 +1726,7 @@ The body of `transaction` can contain calls to other methods and multiple `run`
#### sbt dependencies
```
libraryDependencies ++= Seq(
"io.getquill" %% "quill-finagle-mysql" % "2.3.1-SNAPSHOT"
"io.getquill" %% "quill-finagle-mysql" % "2.3.1"
)
```

Expand Down Expand Up @@ -1766,7 +1766,7 @@ The body of `transaction` can contain calls to other methods and multiple `run`
#### sbt dependencies
```
libraryDependencies ++= Seq(
"io.getquill" %% "quill-finagle-postgres" % "2.3.1-SNAPSHOT"
"io.getquill" %% "quill-finagle-postgres" % "2.3.1"
)
```

Expand All @@ -1793,7 +1793,7 @@ ctx.binaryParams=false
#### sbt dependencies
```
libraryDependencies ++= Seq(
"io.getquill" %% "quill-cassandra" % "2.3.1-SNAPSHOT"
"io.getquill" %% "quill-cassandra" % "2.3.1"
)
```

Expand Down Expand Up @@ -1834,7 +1834,7 @@ ctx.session.addressTranslator=com.datastax.driver.core.policies.IdentityTranslat
#### sbt dependencies
```
libraryDependencies ++= Seq(
"io.getquill" %% "quill-orientdb" % "2.3.1-SNAPSHOT"
"io.getquill" %% "quill-orientdb" % "2.3.1"
)
```

Expand Down

0 comments on commit 49d0ae2

Please sign in to comment.