Prep for 0.9.3

This commit is contained in:
Sean Corfield 2018-07-01 20:30:21 -07:00
parent c3be42cd9d
commit 077b7f06c6
4 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
## 0.9.3-SNAPSHOT (in progress) ## 0.9.3
* Support parameters in `#sql/raw`. Fix #219. (@seancorfield) * Support parameters in `#sql/raw`. Fix #219. (@seancorfield)
* Add examples of table/column aliases to the README. Fix #215. (@seancorfield) * Add examples of table/column aliases to the README. Fix #215. (@seancorfield)

View file

@ -2,8 +2,8 @@
;; Only supports the Clojure (.cljc) side of the house. ;; Only supports the Clojure (.cljc) side of the house.
;; Provides basic support for running the tests (in Clojure). ;; Provides basic support for running the tests (in Clojure).
{:paths ["src" "resources"] {:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.8.0"} :deps {org.clojure/clojure {:mvn/version "1.9.0"}
net.cgrand/macrovich {:mvn/version "0.2.0"}} net.cgrand/macrovich {:mvn/version "0.2.1"}}
:aliases :aliases
{;; clj -A:test:runner {;; clj -A:test:runner
:test {:extra-paths ["test"]} :test {:extra-paths ["test"]}

View file

@ -1,6 +1,6 @@
{ {
"name": "@honeysql/honeysql", "name": "@honeysql/honeysql",
"version": "0.9.2", "version": "0.9.3",
"license": "EPL-1.0", "license": "EPL-1.0",
"homepage": "https://github.com/jkk/honeysql", "homepage": "https://github.com/jkk/honeysql",
"repository": { "repository": {

View file

@ -1,4 +1,4 @@
(defproject honeysql "0.9.3-SNAPSHOT" (defproject honeysql "0.9.3"
:description "SQL as Clojure data structures" :description "SQL as Clojure data structures"
:license {:name "Eclipse Public License" :license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"} :url "http://www.eclipse.org/legal/epl-v10.html"}