prep for RC 5(!)

This commit is contained in:
Sean Corfield 2021-07-17 18:00:02 -07:00
parent 50bbfef07f
commit 01c3a555ba
3 changed files with 4 additions and 4 deletions

View file

@ -4,7 +4,7 @@ SQL as Clojure data structures. Build queries programmatically -- even at runtim
## Build ## Build
[![Clojars Project](https://clojars.org/com.github.seancorfield/honeysql/latest-version.svg)](https://clojars.org/com.github.seancorfield/honeysql) [![cljdoc badge](https://cljdoc.org/badge/com.github.seancorfield/honeysql?2.0.0-rc4)](https://cljdoc.org/d/com.github.seancorfield/honeysql/CURRENT) [![Clojars Project](https://clojars.org/com.github.seancorfield/honeysql/latest-version.svg)](https://clojars.org/com.github.seancorfield/honeysql) [![cljdoc badge](https://cljdoc.org/badge/com.github.seancorfield/honeysql?2.0.0-rc5)](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.

View file

@ -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

View file

@ -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.