Prep for 0.9.3
This commit is contained in:
parent
c3be42cd9d
commit
077b7f06c6
4 changed files with 5 additions and 5 deletions
|
|
@ -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)
|
||||||
|
|
|
||||||
4
deps.edn
4
deps.edn
|
|
@ -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"]}
|
||||||
|
|
|
||||||
|
|
@ -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": {
|
||||||
|
|
|
||||||
|
|
@ -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"}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue