From 8118f5448ea1c51f466cf9d28bb894fa64410b02 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Fri, 3 Dec 2021 13:23:51 -0800 Subject: [PATCH] prep for 2.1.833 --- CHANGELOG.md | 2 +- README.md | 2 +- doc/differences-from-1-x.md | 2 +- doc/getting-started.md | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f935ce4..8b9fdae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changes -* 2.1.832 -- 2021-12-03 +* 2.1.833 -- 2021-12-03 * Fix #372 by merging `:select-distinct-on` differently. * Add empty column list check for `SELECT` and several other clauses, when `:checking :basic` (or `:strict`) is provided. * Update `build-clj` to v0.6.0. diff --git a/README.md b/README.md index f17b031..95047a5 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.1.832)](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.1.833)](https://cljdoc.org/d/com.github.seancorfield/honeysql/CURRENT) 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. diff --git a/doc/differences-from-1-x.md b/doc/differences-from-1-x.md index 189c1ce..ba39861 100644 --- a/doc/differences-from-1-x.md +++ b/doc/differences-from-1-x.md @@ -63,7 +63,7 @@ Supported Clojure versions: 1.7 and later. In `deps.edn`: ```clojure -com.github.seancorfield/honeysql {:mvn/version "2.1.832"} +com.github.seancorfield/honeysql {:mvn/version "2.1.833"} ``` Required as: diff --git a/doc/getting-started.md b/doc/getting-started.md index 0d3bda7..3fdc937 100644 --- a/doc/getting-started.md +++ b/doc/getting-started.md @@ -10,14 +10,14 @@ For the Clojure CLI, add the following dependency to your `deps.edn` file: ```clojure - com.github.seancorfield/honeysql {:mvn/version "2.1.832"} + com.github.seancorfield/honeysql {:mvn/version "2.1.833"} ``` For Leiningen, add the following dependency to your `project.clj` file: ```clojure - [com.github.seancorfield/honeysql "2.1.832"] + [com.github.seancorfield/honeysql "2.1.833"] ``` HoneySQL produces SQL statements but does not execute them.