Skip to content
This repository has been archived by the owner on Dec 7, 2018. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Prep for 0.1.1 release
  • Loading branch information
seancorfield committed Nov 27, 2014
1 parent 7da6bfe commit a057b9a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
13 changes: 9 additions & 4 deletions README.md
Expand Up @@ -8,20 +8,20 @@ Because this DSL is being removed from org.clojure/java.jdbc, the java.jdbc.sql

## Releases and Dependency Information

Latest stable release: 0.1.0:
Latest stable release: 0.1.1:

* [All Released Vesrions](https://clojars.org/java-jdbc/dsl)

[Leiningen](https://github.com/technomancy/leiningen) dependency information:
```clojure
[java-jdbc/dsl "0.1.0"]
[java-jdbc/dsl "0.1.1"]
```
[Maven](http://maven.org/) dependency information:
```xml
<dependency>
<groupId>java-jdbc</groupId>
<artifactId>dsl</artifactId>
<version>0.1.0</version>
<version>0.1.1</version>
</dependency>
```

Expand Down Expand Up @@ -80,8 +80,13 @@ All functions that generate SQL may have an optional **:entities** keyword argum

The **entities** macro can be used to apply an identifier naming convention to a DSL expression. It expects a function representing the naming convention and a DSL expression. It post-walks the DSL expression and inserts the **:entities** keyword argument and naming convention at the end of each expression.

## Changees

0.1.1 2014-11-27 Add support for IN (@dryewo); bump base Clojure version to 1.6.0
0.1.0 2013-11-24 Initial version extracted from java.jdbc

## License

Copyright (c) 2012-2013 Sean Corfield
Copyright (c) 2012-2014 Sean Corfield

Distributed under the Eclipse Public License, the same as Clojure.
4 changes: 2 additions & 2 deletions project.clj
@@ -1,6 +1,6 @@
(defproject java-jdbc/dsl "0.1.1-SNAPSHOT"
(defproject java-jdbc/dsl "0.1.1"
:description "Basic DSL for generating SQL/DDL formerly part of org.clojure/java.jdbc"
:url "https://github.com/seancorfield/jsql"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]])
:dependencies [[org.clojure/clojure "1.6.0"]])

0 comments on commit a057b9a

Please sign in to comment.