Skip to content

Commit

Permalink
Prep for 0.3.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
seancorfield committed Jan 31, 2014
1 parent 651a890 commit 40736d5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Changes in 0.3.3

* Prevent exception/crash when query called with bare SQL string [JDBC-89](http://dev.clojure.org/jira/browse/JDBC-89).
* Add :row-fn and :result-set-fn to metadata-result function [JDBC-87](http://dev.clojure.org/jira/browse/JDBC-87).
* Support key/value configuration from URI (Phil Hagelberg).

Changes in 0.3.2

* Add nil protocol implementation to ISQLParameter.
Expand Down
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,22 @@ Similarly, if you depend on the older 0.2.3 API, you'll need to switch to `cloju
Releases and Dependency Information
========================================

Latest stable release: 0.3.2
Latest stable release: 0.3.3

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

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

[Leiningen](https://github.com/technomancy/leiningen) dependency information:
```clojure
[org.clojure/java.jdbc "0.3.2"]
[org.clojure/java.jdbc "0.3.3"]
```
[Maven](http://maven.apache.org/) dependency information:
```xml
<dependency>
<groupId>org.clojure</groupId>
<artifactId>java.jdbc</artifactId>
<version>0.3.2</version>
<version>0.3.3</version>
</dependency>
```
You will also need to add dependencies for the JDBC driver you intend to use. Here are examples of the drivers currently used for testing,
Expand Down Expand Up @@ -118,6 +118,11 @@ Developer Information
Change Log
====================

* Release 0.3.3 on 2014-01-30
* Prevent exception/crash when query called with bare SQL string [JDBC-89](http://dev.clojure.org/jira/browse/JDBC-89).
* Add :row-fn and :result-set-fn to metadata-result function [JDBC-87](http://dev.clojure.org/jira/browse/JDBC-87).
* Support key/value configuration from URI (Phil Hagelberg).

* Release 0.3.2 on 2013-12-30
* Add nil protocol implementation to ISQLParameter

Expand Down

0 comments on commit 40736d5

Please sign in to comment.