Skip to content

Commit

Permalink
Setting version to 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Quill CI committed Mar 8, 2019
1 parent 90f3e35 commit f3853b9
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions README.md
Expand Up @@ -2097,7 +2097,7 @@ Quill provides a fully type-safe way to use Spark's highly-optimized SQL engine.
### sbt dependency
```
libraryDependencies ++= Seq(
"io.getquill" %% "quill-spark" % "3.0.2-SNAPSHOT"
"io.getquill" %% "quill-spark" % "3.1.0"
)
```

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

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

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

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

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

Expand All @@ -2360,7 +2360,7 @@ available for this situation [here](https://stackoverflow.com/questions/1074869/
```
libraryDependencies ++= Seq(
"com.oracle.jdbc" % "ojdbc8" % "18.3.0.0.0",
"io.getquill" %% "quill-jdbc" % "3.1.0-SNAPSHOT"
"io.getquill" %% "quill-jdbc" % "3.1.0"
)
```

Expand Down Expand Up @@ -2460,7 +2460,7 @@ lazy val ctx = new MysqlMonixJdbcContext(SnakeCase, "ctx", Runner.using(Schedule
```
libraryDependencies ++= Seq(
"mysql" % "mysql-connector-java" % "8.0.15",
"io.getquill" %% "quill-jdbc-monix" % "3.0.2-SNAPSHOT"
"io.getquill" %% "quill-jdbc-monix" % "3.1.0"
)
```

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

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

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

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

Expand Down Expand Up @@ -2588,7 +2588,7 @@ available for this situation [here](https://stackoverflow.com/questions/1074869/
```
libraryDependencies ++= Seq(
"com.oracle.jdbc" % "ojdbc7" % "12.1.0.2",
"io.getquill" %% "quill-jdbc-monix" % "3.1.0-SNAPSHOT"
"io.getquill" %% "quill-jdbc-monix" % "3.1.0"
)
```

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

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

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

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

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

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

Expand All @@ -2883,7 +2883,7 @@ lazy val ctx = new CassandraStreamContext(SnakeCase, "ctx")
#### sbt dependencies
```
libraryDependencies ++= Seq(
"io.getquill" %% "quill-orientdb" % "3.0.2-SNAPSHOT"
"io.getquill" %% "quill-orientdb" % "3.1.0"
)
```

Expand Down Expand Up @@ -2982,4 +2982,4 @@ The project was created having Philip Wadler's talk ["A practical theory of lang

* [A Practical Theory of Language-Integrated Query](http://homepages.inf.ed.ac.uk/slindley/papers/practical-theory-of-linq.pdf)
* [Everything old is new again: Quoted Domain Specific Languages](http://homepages.inf.ed.ac.uk/wadler/papers/qdsl/qdsl.pdf)
* [The Flatter, the Better](http://db.inf.uni-tuebingen.de/staticfiles/publications/the-flatter-the-better.pdf)
* [The Flatter, the Better](http://db.inf.uni-tuebingen.de/staticfiles/publications/the-flatter-the-better.pdf)

0 comments on commit f3853b9

Please sign in to comment.