From f66a68d29477a2eec6e5c49442fa6fcd430a6369 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sun, 29 Dec 2019 16:14:32 -0800 Subject: [PATCH] Prep for 1.0.13 release --- CHANGELOG.md | 13 ++++++++----- README.md | 2 +- doc/getting-started.md | 6 +++--- pom.xml | 2 +- 4 files changed, 13 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f6511f6..bb53fb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,15 +4,18 @@ 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.12 release: +The following changes have been committed to the **master** branch since the 1.0.13 release: -* Fix #82 by adding `clojure.java.data`-based support for setting arbitrary properties on `Connection` and `PreparedStatement` objects, post-creation. Note: this uses the Java reflection API under the hood. -* Adds `next.jdbc.prepare/statement` to create `Statement` objects with all the options available to `prepare` except `:return-keys`. -* Update `org.clojure/java.data` to 0.1.5 (for property setting). -* Additional clarifications in the documentation based on feedback on Slack. +* None. ## Stable Builds +* 2019-12-20 -- 1.0.13 + * Fix #82 by adding `clojure.java.data`-based support for setting arbitrary properties on `Connection` and `PreparedStatement` objects, post-creation. Note: this uses the Java reflection API under the hood. + * Adds `next.jdbc.prepare/statement` to create `Statement` objects with all the options available to `prepare` except `:return-keys`. + * Update `org.clojure/java.data` to 0.1.5 (for property setting). + * Additional clarifications in the documentation based on feedback on Slack. + * 2019-12-11 -- 1.0.12 * Address #81 by splitting the SQL-building functions out of `next.jdbc.sql` into `next.jdbc.sql.builder`. * Fix #80 by avoiding the auto-commit restore after a failed rollback in a failed transaction. diff --git a/README.md b/README.md index 19cc88e..83723c2 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ 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)](https://cljdoc.org/d/seancorfield/next.jdbc/CURRENT) -This documentation is for the 1.0.12 release -- [see the CHANGELOG](CHANGELOG.md). +This documentation is for the 1.0.13 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 7a3e49f..7b618ad 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.12"}} +{seancorfield/next.jdbc {:mvn/version "1.0.13"}} ``` for `deps.edn` or: ```clojure -[seancorfield/next.jdbc "1.0.12"] +[seancorfield/next.jdbc "1.0.13"] ``` 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.12"} + seancorfield/next.jdbc {:mvn/version "1.0.13"} com.h2database/h2 {:mvn/version "1.4.199"}}} ``` diff --git a/pom.xml b/pom.xml index d5e8b9a..8c81a7e 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 seancorfield next.jdbc - 1.0.12 + 1.0.13 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