From 01c3a555ba7301ecf0b64232fa0ebeebd17ad889 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sat, 17 Jul 2021 18:00:02 -0700 Subject: [PATCH] prep for RC 5(!) --- README.md | 2 +- doc/differences-from-1-x.md | 2 +- doc/getting-started.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4676ca4..6bdb88f 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ SQL as Clojure data structures. Build queries programmatically -- even at runtim ## 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. diff --git a/doc/differences-from-1-x.md b/doc/differences-from-1-x.md index c6f6189..3989783 100644 --- a/doc/differences-from-1-x.md +++ b/doc/differences-from-1-x.md @@ -49,7 +49,7 @@ Supported Clojure versions: 1.7 and later. ```clojure ;; 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: (ns my.project diff --git a/doc/getting-started.md b/doc/getting-started.md index 5dd40e9..3a9a302 100644 --- a/doc/getting-started.md +++ b/doc/getting-started.md @@ -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: ```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: ```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.