diff --git a/CHANGES.md b/CHANGES.md index 91f7464..f9130e6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,4 @@ -## 0.9.3-SNAPSHOT (in progress) +## 0.9.3 * Support parameters in `#sql/raw`. Fix #219. (@seancorfield) * Add examples of table/column aliases to the README. Fix #215. (@seancorfield) diff --git a/deps.edn b/deps.edn index 92954cd..25d6f3c 100644 --- a/deps.edn +++ b/deps.edn @@ -2,8 +2,8 @@ ;; Only supports the Clojure (.cljc) side of the house. ;; Provides basic support for running the tests (in Clojure). {:paths ["src" "resources"] - :deps {org.clojure/clojure {:mvn/version "1.8.0"} - net.cgrand/macrovich {:mvn/version "0.2.0"}} + :deps {org.clojure/clojure {:mvn/version "1.9.0"} + net.cgrand/macrovich {:mvn/version "0.2.1"}} :aliases {;; clj -A:test:runner :test {:extra-paths ["test"]} diff --git a/package.json b/package.json index 240bff3..7dbc37f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@honeysql/honeysql", - "version": "0.9.2", + "version": "0.9.3", "license": "EPL-1.0", "homepage": "https://github.com/jkk/honeysql", "repository": { diff --git a/project.clj b/project.clj index 597e4a0..0397949 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject honeysql "0.9.3-SNAPSHOT" +(defproject honeysql "0.9.3" :description "SQL as Clojure data structures" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"}