Reflect latest 1.x version

This commit is contained in:
Sean Corfield 2021-03-07 09:45:08 -08:00
parent 41522c89a1
commit d789c00f54
3 changed files with 8 additions and 4 deletions

View file

@ -17,6 +17,10 @@
# HoneySQL pre-2.x Changes # HoneySQL pre-2.x Changes
* 1.0.461 -- 2021-02-22
* **Fix #299 potential SQL injection vulnerability.**
* Fix/Improve `merge-where` (and `merge-having`) behavior. #282 via #283 (@camsaul)
* 1.0.444 -- 2020-05-29 * 1.0.444 -- 2020-05-29
* Fix #259 so column names are always unqualified in inserts. (@jrdoane) * Fix #259 so column names are always unqualified in inserts. (@jrdoane)
* Fix #257 by adding support for `cross-join` / `merge-cross-join` / `:cross-join`. (@dcj) * Fix #257 by adding support for `cross-join` / `merge-cross-join` / `:cross-join`. (@dcj)

View file

@ -4,9 +4,9 @@ SQL as Clojure data structures. Build queries programmatically -- even at runtim
## Build ## Build
The latest stable version (1.0.444) on Clojars and on cljdoc (note: `honeysql/honeysql`): The latest stable version (1.0.461) on Clojars and on cljdoc (note: `honeysql/honeysql`):
[![Clojars Project](https://clojars.org/honeysql/honeysql/latest-version.svg)](https://clojars.org/honeysql/honeysql) [![cljdoc badge](https://cljdoc.org/badge/honeysql/honeysql?1.0.444)](https://cljdoc.org/d/honeysql/honeysql/CURRENT) [![Clojars Project](https://clojars.org/honeysql/honeysql/latest-version.svg)](https://clojars.org/honeysql/honeysql) [![cljdoc badge](https://cljdoc.org/badge/honeysql/honeysql?1.0.461)](https://cljdoc.org/d/honeysql/honeysql/1.0.461)
This project follows the version scheme MAJOR.MINOR.COMMITS where MAJOR and MINOR provide some relative indication of the size of the change, but do not follow semantic versioning. In general, all changes endeavor to be non-breaking (by moving to new names rather than by breaking existing names). COMMITS is an ever-increasing counter of commits since the beginning of this repository. This project follows the version scheme MAJOR.MINOR.COMMITS where MAJOR and MINOR provide some relative indication of the size of the change, but do not follow semantic versioning. In general, all changes endeavor to be non-breaking (by moving to new names rather than by breaking existing names). COMMITS is an ever-increasing counter of commits since the beginning of this repository.

View file

@ -18,9 +18,9 @@ In addition, HoneySQL 2.x contains different namespaces so you can have both ver
```clojure ```clojure
;; in deps.edn: ;; in deps.edn:
honeysql {:mvn/version "1.0.444"} honeysql {:mvn/version "1.0.461"}
;; or, more correctly: ;; or, more correctly:
honeysql/honeysql {:mvn/version "1.0.444"} honeysql/honeysql {:mvn/version "1.0.461"}
;; in use: ;; in use:
(ns my.project (ns my.project