Skip to content

Commit 19b1e6d

Browse files
committed
Prep for 0.7.10 release
1 parent da5fd9d commit 19b1e6d

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Changes coming in 0.7.10
1+
Changes in 0.7.10
22

33
* Use a US-locale `lower-case` function to avoid problems in certain locales (e.g., Turkish). A similar issue has been fixed recently in both HoneySQL and `next.jdbc`.
44
* Clean up `db-spec` options that are passed to the JDBC connection manager as properties [JDBC-178](https://clojure.atlassian.net/browse/JDBC-178).

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@ Support
2626
Releases and Dependency Information
2727
========================================
2828

29-
Latest stable release: 0.7.9 -- requires Clojure 1.7 or later!
29+
Latest stable release: 0.7.10 -- requires Clojure 1.7 or later!
3030

3131
* [All Released Versions](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.clojure%22%20AND%20a%3A%22java.jdbc%22)
3232

3333
* [Development Snapshot Versions](https://oss.sonatype.org/index.html#nexus-search;gav~org.clojure~java.jdbc~~~)
3434

3535
[Leiningen](https://github.com/technomancy/leiningen) dependency information:
3636
```clojure
37-
[org.clojure/java.jdbc "0.7.9"]
37+
[org.clojure/java.jdbc "0.7.10"]
3838
```
3939
[Maven](http://maven.apache.org/) dependency information:
4040
```xml
4141
<dependency>
4242
<groupId>org.clojure</groupId>
4343
<artifactId>java.jdbc</artifactId>
44-
<version>0.7.9</version>
44+
<version>0.7.10</version>
4545
</dependency>
4646
```
4747
_Note: Earlier versions of Clojure are supported by older versions of `clojure.java.jdbc`: e.g., version 0.6.1 supports Clojure 1.4 and later._
@@ -140,6 +140,11 @@ Developer Information
140140
Change Log
141141
====================
142142

143+
* Release 0.7.10 on 2019-08-24
144+
* Use a US-locale `lower-case` function to avoid problems in certain locales (e.g., Turkish). A similar issue has been fixed recently in both HoneySQL and `next.jdbc`.
145+
* Clean up `db-spec` options that are passed to the JDBC connection manager as properties [JDBC-178](https://clojure.atlassian.net/browse/JDBC-178).
146+
* Relax restriction on `create-table-ddl` column specs to allow numbers (as well as keywords and strings) [JDBC-177](https://clojure.atlassian.net/browse/JDBC-177).
147+
143148
* Release 0.7.9 on 2019-02-21
144149
* Fix behavior of multi-inserts when database does not support generated keys [JDBC-176](https://clojure.atlassian.net/browse/JDBC-176).
145150
* Added _highly experimental_ support for `datafy`/`nav` (in `clojure.java.jdbc.datafy` namespace). This includes a convention-based approach to foreign keys with some assistance from a `:schema` option. This is subject to change and is provided mostly for informational purposes, as an example of the new functionality in Clojure 1.10. This includes a fix for the conventions from [JDBC-175](https://clojure.atlassian.net/browse/JDBC-175).

0 commit comments

Comments
 (0)