From 986c37c457f1e2b94e36acbb2654a6cfad28bc36 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sat, 7 Dec 2019 09:21:18 -0800 Subject: [PATCH] Prep for 1.0.11 release --- CHANGELOG.md | 15 +++++++++------ README.md | 2 +- doc/getting-started.md | 6 +++--- pom.xml | 10 +--------- 4 files changed, 14 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9297deb..6640711 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,16 +4,19 @@ 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.10 release: +The following changes have been committed to the **master** branch since the 1.0.11 release: -* Fix #76 by avoiding conversions on `java.sql.Date` and `java.sql.Timestamp`. -* Add testing against Microsoft SQL Server (run tests with environment variables `NEXT_JDBC_TEST_MSSQL=yes` and `MSSQL_SA_PASSWORD` set to your local -- `127.0.0.1:1433` -- SQL Server `sa` user password; assumes that it can create and drop `fruit` and `fruit_time` tables in the `model` database). -* Add testing against MySQL (run tests with environment variables `NEXT_JDBC_TEST_MYSQL=yes` and `MYSQL_ROOT_PASSWORD` set to your local -- `127.0.0.1:3306` -- MySQL `root` user password; assumes you have already created an empty database called `clojure_test`). -* Bump several JDBC driver versions for up-to-date testing. -* Minor documentation fixes. +* None. ## Stable Builds +* 2019-12-07 -- 1.0.11 + * Fix #76 by avoiding conversions on `java.sql.Date` and `java.sql.Timestamp`. + * Add testing against Microsoft SQL Server (run tests with environment variables `NEXT_JDBC_TEST_MSSQL=yes` and `MSSQL_SA_PASSWORD` set to your local -- `127.0.0.1:1433` -- SQL Server `sa` user password; assumes that it can create and drop `fruit` and `fruit_time` tables in the `model` database). + * Add testing against MySQL (run tests with environment variables `NEXT_JDBC_TEST_MYSQL=yes` and `MYSQL_ROOT_PASSWORD` set to your local -- `127.0.0.1:3306` -- MySQL `root` user password; assumes you have already created an empty database called `clojure_test`). + * Bump several JDBC driver versions for up-to-date testing. + * Minor documentation fixes. + * 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. diff --git a/README.md b/README.md index 2f85b56..7336507 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.10 release -- [see the CHANGELOG](CHANGELOG.md). +This documentation is for the 1.0.11 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 f02fb7b..e32d08f 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.10"}} +{seancorfield/next.jdbc {:mvn/version "1.0.11"}} ``` for `deps.edn` or: ```clojure -[seancorfield/next.jdbc "1.0.10"] +[seancorfield/next.jdbc "1.0.11"] ``` 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.10"} + seancorfield/next.jdbc {:mvn/version "1.0.11"} com.h2database/h2 {:mvn/version "1.4.199"}}} ``` diff --git a/pom.xml b/pom.xml index 5e05d66..e1b03de 100644 --- a/pom.xml +++ b/pom.xml @@ -3,9 +3,8 @@ 4.0.0 seancorfield next.jdbc - 1.0.10 + 1.0.11 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 @@ -14,20 +13,17 @@ http://www.eclipse.org/legal/epl-v10.html - Sean Corfield - 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 05a6d8a47fcea7dc2928e5e2c176310fb7205e0c - org.clojure @@ -40,11 +36,9 @@ 0.1.4 - src - clojars @@ -55,7 +49,6 @@ https://oss.sonatype.org/content/repositories/snapshots/ - clojars @@ -63,5 +56,4 @@ https://clojars.org/repo -