Skip to content

Commit

Permalink
Merge branch 'master' into fix-848
Browse files Browse the repository at this point in the history
  • Loading branch information
fwbrasil committed Nov 23, 2017
2 parents 57a535a + 846e76a commit 126b9cb
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Expand Up @@ -10,7 +10,7 @@ This template isn't a strict requirement to open issues, but please try to provi

### Steps to reproduce the behavior

If the issue can be reproduced using a [mirror context](http://getquill.io/#contexts-mirror-context), please provide a scastie snippet that reproduces it. See https://scastie.scala-lang.org/wFLlOditSvuKghZlJPqXuw as an example. Remember to select the correct Quill version in the left menu.
If the issue can be reproduced using a [mirror context](http://getquill.io/#contexts-mirror-context), please provide a scastie snippet that reproduces it. See https://scastie.scala-lang.org/fwbrasil/Z2CeR2qHQJK6EyQWUBhANA as an example. Remember to select the correct Quill version in the left menu.

### Workaround

Expand Down
26 changes: 13 additions & 13 deletions README.md
Expand Up @@ -37,7 +37,7 @@ import io.getquill._
val ctx = new SqlMirrorContext(MirrorSqlDialect, Literal)
```

> ### **Note:** [Scastie](https://scastie.scala-lang.org/) is a great tool to try out Quill without having to prepare a local environment. It works with [mirror contexts](#mirror-context), see [this](https://scastie.scala-lang.org/wFLlOditSvuKghZlJPqXuw) snippet as an example.
> ### **Note:** [Scastie](https://scastie.scala-lang.org/) is a great tool to try out Quill without having to prepare a local environment. It works with [mirror contexts](#mirror-context), see [this](https://scastie.scala-lang.org/fwbrasil/Z2CeR2qHQJK6EyQWUBhANA) snippet as an example.
The context instance provides all types and methods to deal quotations:

Expand Down 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.2.1-SNAPSHOT"
"io.getquill" %% "quill-spark" % "2.3.1-SNAPSHOT"
)
```

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.2.1-SNAPSHOT"
"io.getquill" %% "quill-jdbc" % "2.3.1-SNAPSHOT"
)
```

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

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

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.2.1-SNAPSHOT"
"io.getquill" %% "quill-jdbc" % "2.3.1-SNAPSHOT"
)
```

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.2.1-SNAPSHOT"
"io.getquill" %% "quill-jdbc" % "2.3.1-SNAPSHOT"
)
```

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

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.2.1-SNAPSHOT"
"io.getquill" %% "quill-async-postgres" % "2.3.1-SNAPSHOT"
)
```

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.2.1-SNAPSHOT"
"io.getquill" %% "quill-finagle-mysql" % "2.3.1-SNAPSHOT"
)
```

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.2.1-SNAPSHOT"
"io.getquill" %% "quill-finagle-postgres" % "2.3.1-SNAPSHOT"
)
```

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

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.2.1-SNAPSHOT"
"io.getquill" %% "quill-orientdb" % "2.3.1-SNAPSHOT"
)
```

Expand Down
2 changes: 1 addition & 1 deletion version.sbt
@@ -1 +1 @@
version in ThisBuild := "2.3.0"
version in ThisBuild := "2.3.1-SNAPSHOT"

0 comments on commit 126b9cb

Please sign in to comment.