From 796c734cbad0fa7c13392b4c87a914105a7e755e Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sat, 23 Apr 2022 16:11:52 -0700 Subject: [PATCH] prep for 2.2.891 release --- .github/workflows/test-and-release.yml | 2 +- .github/workflows/test-and-snapshot.yml | 4 ++-- .github/workflows/test.yml | 2 +- CHANGELOG.md | 2 +- README.md | 2 +- doc/differences-from-1-x.md | 2 +- doc/getting-started.md | 4 ++-- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test-and-release.yml b/.github/workflows/test-and-release.yml index adc2764..5b275e4 100644 --- a/.github/workflows/test-and-release.yml +++ b/.github/workflows/test-and-release.yml @@ -19,7 +19,7 @@ jobs: - name: Setup Clojure uses: DeLaGuardo/setup-clojure@master with: - tools-deps: '1.10.3.1053' + cli: '1.10.3.1053' - name: Cache All The Things uses: actions/cache@v2 with: diff --git a/.github/workflows/test-and-snapshot.yml b/.github/workflows/test-and-snapshot.yml index 1142bde..4e64c9f 100644 --- a/.github/workflows/test-and-snapshot.yml +++ b/.github/workflows/test-and-snapshot.yml @@ -17,7 +17,7 @@ jobs: - name: Setup Clojure uses: DeLaGuardo/setup-clojure@master with: - tools-deps: '1.10.3.1053' + cli: '1.10.3.1053' - name: Cache All The Things uses: actions/cache@v2 with: @@ -49,7 +49,7 @@ jobs: - name: Clojure CLI uses: DeLaGuardo/setup-clojure@master with: - tools-deps: '1.10.3.1053' + cli: '1.10.3.1053' - name: Cache All The Things uses: actions/cache@v2 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a59921d..10500d7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: - name: Clojure CLI uses: DeLaGuardo/setup-clojure@master with: - tools-deps: '1.10.3.1053' + cli: '1.10.3.1053' - name: Cache All The Things uses: actions/cache@v2 with: diff --git a/CHANGELOG.md b/CHANGELOG.md index ef82224..aa2d66b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changes -* 2.2.next in progress +* 2.2.891 -- 2022-04-23 * Address [#404](https://github.com/seancorfield/honeysql/issues/404) by documenting PostgreSQL's `ARRAY` constructor syntax and how to produce it. * Address parts of [#403](https://github.com/seancorfield/honeysql/issues/403) by improving the documentation for `:array` and also improving the exception that was thrown when it was misused. * Fix [#402](https://github.com/seancorfield/honeysql/issues/402) by allowing for expressions in `:insert-into` table. diff --git a/README.md b/README.md index 513d123..9c60095 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.2.868)](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.2.891)](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 92681d7..42ff20c 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.2.868"} +com.github.seancorfield/honeysql {:mvn/version "2.2.891"} ``` Required as: diff --git a/doc/getting-started.md b/doc/getting-started.md index a820cdd..2ca1c97 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.2.868"} + com.github.seancorfield/honeysql {:mvn/version "2.2.891"} ``` For Leiningen, add the following dependency to your `project.clj` file: ```clojure - [com.github.seancorfield/honeysql "2.2.868"] + [com.github.seancorfield/honeysql "2.2.891"] ``` HoneySQL produces SQL statements but does not execute them.