Alpha 8; with correct Getting Started instructions!

This commit is contained in:
Sean Corfield 2019-04-21 18:19:08 -07:00
parent afb62a2884
commit e091321696
3 changed files with 5 additions and 5 deletions

View file

@ -1,3 +1,3 @@
# Change Log
2019-04-21 -- 1.0.0-alpha7 -- Initial publicly announced release.
2019-04-21 -- 1.0.0-alpha8 -- Initial publicly announced release.

View file

@ -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
{seancorfield/next.jdbc {:mvn/version "1.0.0-alpha7"}}
{seancorfield/next.jdbc {:mvn/version "1.0.0-alpha8"}}
```
for `deps.edn` or:
```clojure
[seancorfield/next.jdbc "1.0.0-alpha7"]
[seancorfield/next.jdbc "1.0.0-alpha8"]
```
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"}
seancorfield/next.jdbc {:mvn/version "1.0.0-alpha7"}
seancorfield/next.jdbc {:mvn/version "1.0.0-alpha8"}
com.h2database/h2 {:mvn/version "1.4.197"}}}
```

View file

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>seancorfield</groupId>
<artifactId>next.jdbc</artifactId>
<version>1.0.0-alpha7</version>
<version>1.0.0-alpha8</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>