diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index e12e4d7..103d6d4 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -28,7 +28,7 @@ If possible, please include your Leiningen or clj dependencies, at least for Clo **Environment (please complete the following information):** - OS: [e.g. Linux] - Java Version: [e.g. (AdoptOpenJDK)(build 1.8.0_192-b12)] - - Clojure Version: [e.g. 1.10.1] + - Clojure Version: [e.g. 1.10.3] - Database: [e.g., MySQL 5.7 (Percona)] - Driver Library Version: [e.g., mysql/mysql-connector-java 5.1.41] diff --git a/.gitignore b/.gitignore index 2e5bcbc..5bfbf59 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ .lsp/sqlite.db .nrepl-history .nrepl-port +.portal .project .rebel_readline_history .settings diff --git a/doc/getting-started.md b/doc/getting-started.md index 7981159..5e1b8fd 100644 --- a/doc/getting-started.md +++ b/doc/getting-started.md @@ -6,7 +6,7 @@ It is designed to work with Clojure 1.10 or later, supports `datafy`/`nav`, and ## Installation -**You must be using Clojure 1.10 or later.** 1.10.1 is the most recent stable version of Clojure (as of November 3rd, 2020). +**You must be using Clojure 1.10 or later.** 1.10.3 is the most recent stable version of Clojure (as of March 4th, 2021). You can add `next.jdbc` to your project with either: @@ -47,7 +47,7 @@ In this REPL session, we'll define an H2 datasource, create a database with a si ```clojure > clj -Clojure 1.10.1 +Clojure 1.10.3 user=> (require '[next.jdbc :as jdbc]) nil user=> (def db {:dbtype "h2" :dbname "example"})