Prep for 1.0.9 release
This commit is contained in:
parent
8c75e3a546
commit
bde9c2d074
4 changed files with 13 additions and 10 deletions
|
|
@ -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.8 release:
|
||||
The following changes have been committed to the **master** branch since the 1.0.9 release:
|
||||
|
||||
* None.
|
||||
|
||||
## 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`.
|
||||
* Fix #67 by adding `:jdbcUrl` version spec.
|
||||
* Add `next.jdbc.optional/as-maps-adapter` to provide a way to override the default result set reading behavior of using `.getObject` when omitting SQL `NULL` values from result set maps.
|
||||
|
||||
## Stable Builds
|
||||
|
||||
* 2019-09-27 -- 1.0.8
|
||||
* Fix #66 by adding support for a db-spec hash map format containing a `:jdbcUrl` key (consistent with `->pool`) so that you can create a datasource from a JDBC URL string and additional options.
|
||||
* Address #65 by adding a HugSQL "quick start" to the **Friendly SQL Functions** section of the docs.
|
||||
|
|
|
|||
|
|
@ -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.8 release -- [see the CHANGELOG](CHANGELOG.md).
|
||||
This documentation is for the 1.0.9 release -- [see the CHANGELOG](CHANGELOG.md).
|
||||
|
||||
* [Getting Started](/doc/getting-started.md)
|
||||
* [Migrating from `clojure.java.jdbc`](/doc/migration-from-clojure-java-jdbc.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.8"}}
|
||||
{seancorfield/next.jdbc {:mvn/version "1.0.9"}}
|
||||
```
|
||||
for `deps.edn` or:
|
||||
|
||||
```clojure
|
||||
[seancorfield/next.jdbc "1.0.8"]
|
||||
[seancorfield/next.jdbc "1.0.9"]
|
||||
```
|
||||
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.8"}
|
||||
seancorfield/next.jdbc {:mvn/version "1.0.9"}
|
||||
com.h2database/h2 {:mvn/version "1.4.199"}}}
|
||||
```
|
||||
|
||||
|
|
|
|||
2
pom.xml
2
pom.xml
|
|
@ -3,7 +3,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>seancorfield</groupId>
|
||||
<artifactId>next.jdbc</artifactId>
|
||||
<version>1.0.8</version>
|
||||
<version>1.0.9</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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue