From a057b9a77461d057acf842288dc23f36f9488cae Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Thu, 27 Nov 2014 09:57:01 -0800 Subject: [PATCH] Prep for 0.1.1 release --- README.md | 13 +++++++++---- project.clj | 4 ++-- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 316ea5e..c9ee695 100644 --- a/README.md +++ b/README.md @@ -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 java-jdbc dsl - 0.1.0 + 0.1.1 ``` @@ -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. diff --git a/project.clj b/project.clj index 0e04e43..8b0213c 100644 --- a/project.clj +++ b/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"]])