diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2baf520..fbaa7e6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,18 +2,18 @@
Only accretive/fixative changes will be made from now on.
-Changes made on **develop** since the 1.1.547 release:
-* Fix #132 by adding specs for `next.jdbc/with-options` and `next.jdbc.prepare/statement`; correct spec for `next.jdbc.connection/component`. PR #131 from @Briaoeuidhtns.
-* Fix #130 by implementing `clojure.lang.ILookup` on the three builder adapters.
-* Fix #129 by adding `with-column-value` to `RowBuilder` and a more generic `builder-adapter`.
-* Fix #128 by adding a test for the "not found" arity of lookup on mapified result sets.
-* Fix #121 by conditionally adding `next.jdbc/snake-kebab-opts`, `next.jdbc/unqualified-snake-kebab-opts`, `next.jdbc.result-set/as-kebab-maps`, and `next.jdbc.result-set/as-unqualified-kebab-maps` (which are present only if `camel-snake-kebab` is on your classpath).
-* Correct MySQL batch statement rewrite tip: it's `:rewriteBatchedStatements true` (plural). Also surface the batch statement tips in the **Tips & Tricks** page.
-* Clarify how combining is interleaving with reducing in **Reducing and Folding with `plan`**.
-* Use "JDBC URL" consistently everywhere (instead of "JDBC URI" in several places).
-
## Stable Builds
+* 2020-07-10 -- 1.1.569
+ * Fix #132 by adding specs for `next.jdbc/with-options` and `next.jdbc.prepare/statement`; correct spec for `next.jdbc.connection/component`. PR #131 from @Briaoeuidhtns.
+ * Fix #130 by implementing `clojure.lang.ILookup` on the three builder adapters.
+ * Fix #129 by adding `with-column-value` to `RowBuilder` and a more generic `builder-adapter`.
+ * Fix #128 by adding a test for the "not found" arity of lookup on mapified result sets.
+ * Fix #121 by conditionally adding `next.jdbc/snake-kebab-opts`, `next.jdbc/unqualified-snake-kebab-opts`, `next.jdbc.result-set/as-kebab-maps`, and `next.jdbc.result-set/as-unqualified-kebab-maps` (which are present only if `camel-snake-kebab` is on your classpath).
+ * Correct MySQL batch statement rewrite tip: it's `:rewriteBatchedStatements true` (plural). Also surface the batch statement tips in the **Tips & Tricks** page.
+ * Clarify how combining is interleaving with reducing in **Reducing and Folding with `plan`**.
+ * Use "JDBC URL" consistently everywhere (instead of "JDBC URI" in several places).
+
* 2020-06-29 -- 1.1.547
* Address #125 by making the result of `plan` foldable (in the `clojure.core.reducers` sense).
* Address #124 by extending `next.jdbc.sql.builder/for-query` to support `:top` (SQL Server), `:limit` / `:offset` (MySQL/PostgreSQL), `:offset` / `:fetch` (SQL Standard) for `find-by-keys`.
diff --git a/README.md b/README.md
index 82ceb84..49f28b2 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@ The next generation of `clojure.java.jdbc`: a new low-level Clojure wrapper for
The latest versions on Clojars and on cljdoc:
-[](https://clojars.org/seancorfield/next.jdbc) [](https://cljdoc.org/d/seancorfield/next.jdbc/CURRENT)
+[](https://clojars.org/seancorfield/next.jdbc) [](https://cljdoc.org/d/seancorfield/next.jdbc/CURRENT)
The documentation on [cljdoc.org](https://cljdoc.org/d/seancorfield/next.jdbc/CURRENT) is for the current version of `next.jdbc`:
@@ -14,7 +14,7 @@ The documentation on [cljdoc.org](https://cljdoc.org/d/seancorfield/next.jdbc/CU
* [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 **develop** since the 1.1.547 release -- [see the CHANGELOG](https://github.com/seancorfield/next-jdbc/blob/develop/CHANGELOG.md) and then read the [corresponding updated documentation](https://github.com/seancorfield/next-jdbc/tree/develop/doc) on GitHub if you want.
+The documentation on GitHub is for **develop** since the 1.1.569 release -- [see the CHANGELOG](https://github.com/seancorfield/next-jdbc/blob/develop/CHANGELOG.md) and then read the [corresponding updated documentation](https://github.com/seancorfield/next-jdbc/tree/develop/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.
diff --git a/doc/getting-started.md b/doc/getting-started.md
index cc6154f..b11f427 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
-seancorfield/next.jdbc {:mvn/version "1.1.547"}
+seancorfield/next.jdbc {:mvn/version "1.1.569"}
```
for `deps.edn` or:
```clojure
-[seancorfield/next.jdbc "1.1.547"]
+[seancorfield/next.jdbc "1.1.569"]
```
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.1"}
- seancorfield/next.jdbc {:mvn/version "1.1.547"}
+ seancorfield/next.jdbc {:mvn/version "1.1.569"}
com.h2database/h2 {:mvn/version "1.4.199"}}}
```
diff --git a/doc/result-set-builders.md b/doc/result-set-builders.md
index 8b756c6..bf3ced7 100644
--- a/doc/result-set-builders.md
+++ b/doc/result-set-builders.md
@@ -58,7 +58,7 @@ An example column reader is provided -- `clob-column-reader` -- that still uses
result-set/clob-column-reader)}
```
-As of 1.1.next, the second style of adapter relies on `with-column-value` from `RowBuilder` (see below) and allows you to take complete control of the column reading process. This style takes a `column-by-index-fn` function, which is called with the builder itself, the `ResultSet`, and the column index, and is expected to read the raw column value from the result set and perform any and all processing on it, before returning it. The result is added directly to the current row with no further processing.
+As of 1.1.569, the second style of adapter relies on `with-column-value` from `RowBuilder` (see below) and allows you to take complete control of the column reading process. This style takes a `column-by-index-fn` function, which is called with the builder itself, the `ResultSet`, and the column index, and is expected to read the raw column value from the result set and perform any and all processing on it, before returning it. The result is added directly to the current row with no further processing.
* `builder-adapter` -- adapts any existing builder function with a new column reading function.
diff --git a/pom.xml b/pom.xml
index b8622a1..3dce875 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
seancorfield
next.jdbc
- 1.1.547
+ 1.1.569
next.jdbc
The next generation of clojure.java.jdbc: a new low-level Clojure wrapper for JDBC-based access to databases.
https://github.com/seancorfield/next-jdbc
@@ -22,7 +22,7 @@
https://github.com/seancorfield/next-jdbc
scm:git:git://github.com/seancorfield/next-jdbc.git
scm:git:ssh://git@github.com/seancorfield/next-jdbc.git
- v1.1.547
+ v1.1.569