From f4573f5f956da8e29aa1029f00bc153edc673f2f Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sun, 21 Apr 2019 17:37:22 -0700 Subject: [PATCH] Alpha 7; clean up deps If this also fixes the cljdoc issues, I think we'll be ready for an announcement on Monday! --- doc/getting-started.md | 6 +++--- pom.xml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/getting-started.md b/doc/getting-started.md index 77780ed..388869c 100644 --- a/doc/getting-started.md +++ b/doc/getting-started.md @@ -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-alpha6"}} +{next.jdbc {:mvn/version "1.0.0-alpha7"}} ``` for `deps.edn` or: ```clojure -[next.jdbc "1.0.0-alpha6"] +[next.jdbc "1.0.0-alpha7"] ``` 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-alpha6"} + next.jdbc {:mvn/version "1.0.0-alpha7"} com.h2database/h2 {:mvn/version "1.4.197"}}} ``` diff --git a/pom.xml b/pom.xml index 97618a3..f01dc73 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 seancorfield next.jdbc - 1.0.0-alpha6 + 1.0.0-alpha7 next.jdbc The next generation of clojure.java.jdbc: a new low-level Clojure wrapper for JDBC-based access to databases.