Skip to content

Commit

Permalink
Alpha 8; with correct Getting Started instructions!
Browse files Browse the repository at this point in the history
  • Loading branch information
seancorfield committed Apr 22, 2019
1 parent afb62a2 commit e091321
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
6 changes: 3 additions & 3 deletions doc/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.

Expand All @@ -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"}}}
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit e091321

Please sign in to comment.