update mentions of Clojure 1.10.1 -> 1.10.3
This commit is contained in:
parent
5343edb667
commit
70f1eaaf77
3 changed files with 4 additions and 3 deletions
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
|
|
@ -28,7 +28,7 @@ If possible, please include your Leiningen or clj dependencies, at least for Clo
|
||||||
**Environment (please complete the following information):**
|
**Environment (please complete the following information):**
|
||||||
- OS: [e.g. Linux]
|
- OS: [e.g. Linux]
|
||||||
- Java Version: [e.g. (AdoptOpenJDK)(build 1.8.0_192-b12)]
|
- 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)]
|
- Database: [e.g., MySQL 5.7 (Percona)]
|
||||||
- Driver Library Version: [e.g., mysql/mysql-connector-java 5.1.41]
|
- Driver Library Version: [e.g., mysql/mysql-connector-java 5.1.41]
|
||||||
|
|
||||||
|
|
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -12,6 +12,7 @@
|
||||||
.lsp/sqlite.db
|
.lsp/sqlite.db
|
||||||
.nrepl-history
|
.nrepl-history
|
||||||
.nrepl-port
|
.nrepl-port
|
||||||
|
.portal
|
||||||
.project
|
.project
|
||||||
.rebel_readline_history
|
.rebel_readline_history
|
||||||
.settings
|
.settings
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ It is designed to work with Clojure 1.10 or later, supports `datafy`/`nav`, and
|
||||||
|
|
||||||
## Installation
|
## 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:
|
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
|
```clojure
|
||||||
> clj
|
> clj
|
||||||
Clojure 1.10.1
|
Clojure 1.10.3
|
||||||
user=> (require '[next.jdbc :as jdbc])
|
user=> (require '[next.jdbc :as jdbc])
|
||||||
nil
|
nil
|
||||||
user=> (def db {:dbtype "h2" :dbname "example"})
|
user=> (def db {:dbtype "h2" :dbname "example"})
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue