Prep for 1.0.10 release

This commit is contained in:
Sean Corfield 2019-11-14 19:08:50 -08:00
parent 7b6aa69e31
commit 05a6d8a47f
4 changed files with 21 additions and 18 deletions

View file

@ -4,8 +4,13 @@ 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.9 release:
The following changes have been committed to the **master** branch since the 1.0.10 release:
* None.
## Stable Builds
* 2019-11-14 -- 1.0.10
* Fix #75 by adding support for `java.sql.Statement` to `plan`, `execute!`, and `execute-one!`.
* Address #74 by making several small changes to satisfy Eastwood.
* Fix #73 by providing a new, optional namespace `next.jdbc.date-time` that can be required if your database driver needs assistance converting `java.util.Date` (PostgreSQL!) or the Java Time types to SQL `timestamp` (or SQL `date`/`time`).
@ -18,8 +23,6 @@ The following changes have been committed to the **master** branch since the 1.0
* Improve `datafy`/`nav` documentation around `:schema`.
* Update `org.clojure/java.data` to `"0.1.4"` (0.1.2 fixes a number of reflection warnings).
## Stable Builds
* 2019-10-11 -- 1.0.9
* Address #69 by trying to clarify when to use `execute-one!` vs `execute!` vs `plan`.
* Address #68 by clarifying that builder functions do not affect the "fake result set" containing `:next.jdbc/update-count`.

View file

@ -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.9 release -- [see the CHANGELOG](CHANGELOG.md).
This documentation is for the 1.0.10 release -- [see the CHANGELOG](CHANGELOG.md).
* [Getting Started](/doc/getting-started.md)
* [Migrating from `clojure.java.jdbc`](/doc/migration-from-clojure-java-jdbc.md)

View file

@ -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.9"}}
{seancorfield/next.jdbc {:mvn/version "1.0.10"}}
```
for `deps.edn` or:
```clojure
[seancorfield/next.jdbc "1.0.9"]
[seancorfield/next.jdbc "1.0.10"]
```
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.9"}
seancorfield/next.jdbc {:mvn/version "1.0.10"}
com.h2database/h2 {:mvn/version "1.4.199"}}}
```

View file

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>seancorfield</groupId>
<artifactId>next.jdbc</artifactId>
<version>1.0.9</version>
<version>1.0.10</version>
<name>next.jdbc</name>
<description>The next generation of clojure.java.jdbc: a new low-level Clojure wrapper for JDBC-based access to databases.</description>
@ -37,7 +37,7 @@
<dependency>
<groupId>org.clojure</groupId>
<artifactId>java.data</artifactId>
<version>0.1.2</version>
<version>0.1.4</version>
</dependency>
</dependencies>