From afb62a28844841f93071f8e48a46d1d6db696a60 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sun, 21 Apr 2019 18:18:10 -0700 Subject: [PATCH] Fix artifact name in the docs! Doh! --- CONTRIBUTING.md | 2 +- doc/getting-started.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 067e751..c00dcc4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,4 +1,4 @@ -# next.jdbc +# Contributing to `next.jdbc` The next generation of [`clojure.java.jdbc`](https://github.com/clojure/java.jdbc) is *still not accepting contributions* because it I have not yet decided diff --git a/doc/getting-started.md b/doc/getting-started.md index 388869c..d2e0661 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-alpha7"}} +{seancorfield/next.jdbc {:mvn/version "1.0.0-alpha7"}} ``` for `deps.edn` or: ```clojure -[next.jdbc "1.0.0-alpha7"] +[seancorfield/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-alpha7"} + seancorfield/next.jdbc {:mvn/version "1.0.0-alpha7"} com.h2database/h2 {:mvn/version "1.4.197"}}} ```