diff --git a/CHANGELOG.md b/CHANGELOG.md index 1541693..3a13bee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ Only accretive/fixative changes will be made from now on. The following changes have been made to **master** since the 1.0.395 build: -* None. +* Attempt to drive readers to cljdoc.org instead of the GitHub version (which is harder to navigate). ## Stable Builds diff --git a/README.md b/README.md index 87c9ba7..c555d1f 100644 --- a/README.md +++ b/README.md @@ -8,12 +8,14 @@ The latest versions on Clojars and on cljdoc: [![Clojars Project](https://clojars.org/seancorfield/next.jdbc/latest-version.svg)](https://clojars.org/seancorfield/next.jdbc) [![cljdoc badge](https://cljdoc.org/badge/seancorfield/next.jdbc?1.0.395)](https://cljdoc.org/d/seancorfield/next.jdbc/CURRENT) -This documentation is for **master** since the 1.0.395 release -- [see the CHANGELOG](CHANGELOG.md). +The documentation on [cljdoc.org](https://cljdoc.org/d/seancorfield/next.jdbc/CURRENT) is for the current version of `next.jdbc`: -* [Getting Started](/doc/getting-started.md) -* [Migrating from `clojure.java.jdbc`](/doc/migration-from-clojure-java-jdbc.md) +* [Getting Started](https://cljdoc.org/d/seancorfield/next.jdbc/CURRENT/doc/getting-started) +* [Migrating from `clojure.java.jdbc`](https://cljdoc.org/d/seancorfield/next.jdbc/CURRENT/doc/migration-from-clojure-java-jdbc) * Feedback via [issues](https://github.com/seancorfield/next-jdbc/issues) or in the [`#sql` channel on the Clojurians Slack](https://clojurians.slack.com/messages/C1Q164V29/details/) or the [`#sql` stream on the Clojurians Zulip](https://clojurians.zulipchat.com/#narrow/stream/152063-sql). +The documentation on GitHub is for **master** since the 1.0.395 release -- [see the CHANGELOG](CHANGELOG.md) and then read the [corresponding updated documentation](https://github.com/seancorfield/next-jdbc/tree/master/doc) on GitHub if you want. + This project follows the version scheme MAJOR.MINOR.COMMITS where MAJOR and MINOR provide some relative indication of the size of the change, but do not follow semantic versioning. In general, all changes endeavor to be non-breaking (by moving to new names rather than by breaking existing names). COMMITS is an ever-increasing counter of commits since the beginning of this repository. ## Motivation diff --git a/src/next/jdbc.clj b/src/next/jdbc.clj index d3b3743..711578a 100644 --- a/src/next/jdbc.clj +++ b/src/next/jdbc.clj @@ -182,7 +182,7 @@ from each row of the underlying `ResultSet` without realizing the row as a Clojure hash map. `select-keys` can also be used without realizing the row. Operations that imply an actual Clojure data structure (such as `assoc`, - `dissoc`, `seq`, `keys`, `vals`, etc) will realize the whole into a hash map + `dissoc`, `seq`, `keys`, `vals`, etc) will realize the row into a hash map using the supplied `:builder-fn` (or `as-maps` by default). If your reducing function needs to produce a hash map without calling a