prep for RC 5(!)
This commit is contained in:
parent
50bbfef07f
commit
01c3a555ba
3 changed files with 4 additions and 4 deletions
|
|
@ -4,7 +4,7 @@ SQL as Clojure data structures. Build queries programmatically -- even at runtim
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
|
||||||
[](https://clojars.org/com.github.seancorfield/honeysql) [](https://cljdoc.org/d/com.github.seancorfield/honeysql/CURRENT)
|
[](https://clojars.org/com.github.seancorfield/honeysql) [](https://cljdoc.org/d/com.github.seancorfield/honeysql/CURRENT)
|
||||||
|
|
||||||
Once the prerelease testing is complete, this project will follow 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.
|
Once the prerelease testing is complete, this project will follow 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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@ Supported Clojure versions: 1.7 and later.
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
;; in deps.edn:
|
;; in deps.edn:
|
||||||
com.github.seancorfield/honeysql {:mvn/version "2.0.0-rc4"}
|
com.github.seancorfield/honeysql {:mvn/version "2.0.0-rc5"}
|
||||||
|
|
||||||
;; in use:
|
;; in use:
|
||||||
(ns my.project
|
(ns my.project
|
||||||
|
|
|
||||||
|
|
@ -9,13 +9,13 @@ data to a SQL statement (string) and any parameters it needs.
|
||||||
For the Clojure CLI, add the following dependency to your `deps.edn` file:
|
For the Clojure CLI, add the following dependency to your `deps.edn` file:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
com.github.seancorfield/honeysql {:mvn/version "2.0.0-rc4"}
|
com.github.seancorfield/honeysql {:mvn/version "2.0.0-rc5"}
|
||||||
```
|
```
|
||||||
|
|
||||||
For Leiningen, add the following dependency to your `project.clj` file:
|
For Leiningen, add the following dependency to your `project.clj` file:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
[com.github.seancorfield/honeysql "2.0.0-rc4"]
|
[com.github.seancorfield/honeysql "2.0.0-rc5"]
|
||||||
```
|
```
|
||||||
|
|
||||||
HoneySQL produces SQL statements but does not execute them.
|
HoneySQL produces SQL statements but does not execute them.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue