Prep for 1.0.11 release
This commit is contained in:
parent
32e9f338d5
commit
986c37c457
4 changed files with 14 additions and 19 deletions
15
CHANGELOG.md
15
CHANGELOG.md
|
|
@ -4,16 +4,19 @@ Only accretive/fixative changes will be made from now on.
|
||||||
|
|
||||||
## Unreleased Changes
|
## 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`.
|
* None.
|
||||||
* 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.
|
|
||||||
|
|
||||||
## Stable Builds
|
## 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
|
* 2019-11-14 -- 1.0.10
|
||||||
* Fix #75 by adding support for `java.sql.Statement` to `plan`, `execute!`, and `execute-one!`.
|
* 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.
|
* Address #74 by making several small changes to satisfy Eastwood.
|
||||||
|
|
|
||||||
|
|
@ -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)
|
[](https://clojars.org/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)
|
* [Getting Started](/doc/getting-started.md)
|
||||||
* [Migrating from `clojure.java.jdbc`](/doc/migration-from-clojure-java-jdbc.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:
|
You can add `next.jdbc` to your project with either:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
{seancorfield/next.jdbc {:mvn/version "1.0.10"}}
|
{seancorfield/next.jdbc {:mvn/version "1.0.11"}}
|
||||||
```
|
```
|
||||||
for `deps.edn` or:
|
for `deps.edn` or:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
[seancorfield/next.jdbc "1.0.10"]
|
[seancorfield/next.jdbc "1.0.11"]
|
||||||
```
|
```
|
||||||
for `project.clj` or `build.boot`.
|
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
|
```clojure
|
||||||
;; deps.edn
|
;; deps.edn
|
||||||
{:deps {org.clojure/clojure {:mvn/version "1.10.1"}
|
{: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"}}}
|
com.h2database/h2 {:mvn/version "1.4.199"}}}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
10
pom.xml
10
pom.xml
|
|
@ -3,9 +3,8 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>seancorfield</groupId>
|
<groupId>seancorfield</groupId>
|
||||||
<artifactId>next.jdbc</artifactId>
|
<artifactId>next.jdbc</artifactId>
|
||||||
<version>1.0.10</version>
|
<version>1.0.11</version>
|
||||||
<name>next.jdbc</name>
|
<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>
|
<description>The next generation of clojure.java.jdbc: a new low-level Clojure wrapper for JDBC-based access to databases.</description>
|
||||||
<url>https://github.com/seancorfield/next-jdbc</url>
|
<url>https://github.com/seancorfield/next-jdbc</url>
|
||||||
<licenses>
|
<licenses>
|
||||||
|
|
@ -14,20 +13,17 @@
|
||||||
<url>http://www.eclipse.org/legal/epl-v10.html</url>
|
<url>http://www.eclipse.org/legal/epl-v10.html</url>
|
||||||
</license>
|
</license>
|
||||||
</licenses>
|
</licenses>
|
||||||
|
|
||||||
<developers>
|
<developers>
|
||||||
<developer>
|
<developer>
|
||||||
<name>Sean Corfield</name>
|
<name>Sean Corfield</name>
|
||||||
</developer>
|
</developer>
|
||||||
</developers>
|
</developers>
|
||||||
|
|
||||||
<scm>
|
<scm>
|
||||||
<url>https://github.com/seancorfield/next-jdbc</url>
|
<url>https://github.com/seancorfield/next-jdbc</url>
|
||||||
<connection>scm:git:git://github.com/seancorfield/next-jdbc.git</connection>
|
<connection>scm:git:git://github.com/seancorfield/next-jdbc.git</connection>
|
||||||
<developerConnection>scm:git:ssh://git@github.com/seancorfield/next-jdbc.git</developerConnection>
|
<developerConnection>scm:git:ssh://git@github.com/seancorfield/next-jdbc.git</developerConnection>
|
||||||
<tag>05a6d8a47fcea7dc2928e5e2c176310fb7205e0c</tag>
|
<tag>05a6d8a47fcea7dc2928e5e2c176310fb7205e0c</tag>
|
||||||
</scm>
|
</scm>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.clojure</groupId>
|
<groupId>org.clojure</groupId>
|
||||||
|
|
@ -40,11 +36,9 @@
|
||||||
<version>0.1.4</version>
|
<version>0.1.4</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<sourceDirectory>src</sourceDirectory>
|
<sourceDirectory>src</sourceDirectory>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
<id>clojars</id>
|
<id>clojars</id>
|
||||||
|
|
@ -55,7 +49,6 @@
|
||||||
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
||||||
</repository>
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
<id>clojars</id>
|
<id>clojars</id>
|
||||||
|
|
@ -63,5 +56,4 @@
|
||||||
<url>https://clojars.org/repo</url>
|
<url>https://clojars.org/repo</url>
|
||||||
</repository>
|
</repository>
|
||||||
</distributionManagement>
|
</distributionManagement>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue