diff --git a/CHANGELOG.md b/CHANGELOG.md
index deaf3b1..5c6b212 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,14 +4,17 @@ Only accretive/fixative changes will be made from now on.
## Unreleased Changes
-The following changes have been committed to the **master** branch since the 1.0.6 release:
+The following changes have been committed to the **master** branch since the 1.0.7 release:
-* Address #60 by supporting simpler schema entry formats: `:table/column` is equivalent to the old `[:table :column :one]` and `[:table/column]` is equivalent to the old `[:table :column :many]`. The older formats will continue to be supported but should be considered deprecated.
-* Added test for using `ANY(?)` and arrays in PostgreSQL for `IN (?,,,?)` style queries. Added a **Tips & Tricks** section to **Friendly SQL Functions** with database-specific suggestions, that starts with this one.
-* Improved documentation in several areas.
+* None.
## Stable Builds
+* 2019-09-09 -- 1.0.7
+ * Address #60 by supporting simpler schema entry formats: `:table/column` is equivalent to the old `[:table :column :one]` and `[:table/column]` is equivalent to the old `[:table :column :many]`. The older formats will continue to be supported but should be considered deprecated.
+ * Added test for using `ANY(?)` and arrays in PostgreSQL for `IN (?,,,?)` style queries. Added a **Tips & Tricks** section to **Friendly SQL Functions** with database-specific suggestions, that starts with this one.
+ * Improved documentation in several areas.
+
* 2019-08-24 -- 1.0.6
* Fix #54 by improving documentation around data type conversions (and the `ReadableColumn` and `SettableParameter` protocols).
* Fix #52 by using a US-locale function in the "lower" result set builders to avoid unexpected character changes in column names in locales such as Turkish. If you want the locale-sensitive behavior, pass `clojure.string/lower-case` into one of the "modified" result set builders.
diff --git a/README.md b/README.md
index b3173b0..7b0dd35 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@ The latest versions on Clojars and on cljdoc:
[](https://clojars.org/seancorfield/next.jdbc) [](https://cljdoc.org/d/seancorfield/next.jdbc/CURRENT)
-This documentation is for the 1.0.6 release -- [see the CHANGELOG](CHANGELOG.md).
+This documentation is for the 1.0.7 release -- [see the CHANGELOG](CHANGELOG.md).
* [Getting Started](/doc/getting-started.md)
* [Migrating from `clojure.java.jdbc`](/doc/migration-from-clojure-java-jdbc.md)
diff --git a/doc/getting-started.md b/doc/getting-started.md
index dcf8239..4b45538 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.0.6"}}
+{seancorfield/next.jdbc {:mvn/version "1.0.7"}}
```
for `deps.edn` or:
```clojure
-[seancorfield/next.jdbc "1.0.6"]
+[seancorfield/next.jdbc "1.0.7"]
```
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.0.6"}
+ seancorfield/next.jdbc {:mvn/version "1.0.7"}
com.h2database/h2 {:mvn/version "1.4.199"}}}
```
diff --git a/pom.xml b/pom.xml
index e8b6dc1..096467c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
seancorfield
next.jdbc
- 1.0.6
+ 1.0.7
next.jdbc
The next generation of clojure.java.jdbc: a new low-level Clojure wrapper for JDBC-based access to databases.