Alpha 6; expand testing to multiple DB types
Now tests: Derby, H2 in-memory (as before), H2 on-disk, HSQLDB, and SQLite.
This commit is contained in:
parent
2702a01773
commit
d05462895f
2 changed files with 4 additions and 4 deletions
|
|
@ -9,12 +9,12 @@ It is designed to work with Clojure 1.10 or later, supports `datafy`/`nav`, and
|
|||
You can add `next.jdbc` to your project with either:
|
||||
|
||||
```clojure
|
||||
{next.jdbc {:mvn/version "1.0.0-alpha5"}}
|
||||
{next.jdbc {:mvn/version "1.0.0-alpha6"}}
|
||||
```
|
||||
for `deps.edn` or:
|
||||
|
||||
```clojure
|
||||
[next.jdbc "1.0.0-alpha5"]
|
||||
[next.jdbc "1.0.0-alpha6"]
|
||||
```
|
||||
for `project.clj` or `build.boot`.
|
||||
|
||||
|
|
@ -29,7 +29,7 @@ For the examples in this documentation, we will use a local H2 database on disk,
|
|||
```clojure
|
||||
;; deps.edn
|
||||
{:deps {org.clojure/clojure {:mvn/version "1.10.0"}
|
||||
next.jdbc {:mvn/version "1.0.0-alpha5"}
|
||||
next.jdbc {:mvn/version "1.0.0-alpha6"}
|
||||
com.h2database/h2 {:mvn/version "1.4.197"}}}
|
||||
```
|
||||
|
||||
|
|
|
|||
2
pom.xml
2
pom.xml
|
|
@ -3,7 +3,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>seancorfield</groupId>
|
||||
<artifactId>next.jdbc</artifactId>
|
||||
<version>1.0.0-alpha5</version>
|
||||
<version>1.0.0-alpha6</version>
|
||||
<name>next.jdbc</name>
|
||||
|
||||
<description>The next generation of clojure.java.jdbc: a new low-level Clojure wrapper for JDBC-based access to databases.</description>
|
||||
|
|
|
|||
Loading…
Reference in a new issue