From 60c15491689b51c20d34f0a03179df1ba5931045 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sun, 22 Sep 2024 18:02:38 -0700 Subject: [PATCH] dev/test/ci deps updates Signed-off-by: Sean Corfield --- .github/workflows/test-and-release.yml | 2 +- .github/workflows/test-and-snapshot.yml | 4 ++-- .github/workflows/test.yml | 2 +- CHANGELOG.md | 2 +- deps.edn | 6 +++--- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test-and-release.yml b/.github/workflows/test-and-release.yml index 410921d..e0ebb40 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: - cli: '1.11.3.1463' + cli: '1.12.0.1479' - name: Cache All The Things uses: actions/cache@v4 with: diff --git a/.github/workflows/test-and-snapshot.yml b/.github/workflows/test-and-snapshot.yml index 657df8c..3f934c4 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: - cli: '1.11.3.1463' + cli: '1.12.0.1479' - name: Cache All The Things uses: actions/cache@v4 with: @@ -49,7 +49,7 @@ jobs: - name: Clojure CLI uses: DeLaGuardo/setup-clojure@master with: - cli: '1.11.3.1463' + cli: '1.12.0.1479' - name: Cache All The Things uses: actions/cache@v4 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 728b762..d0f141d 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: - cli: '1.11.3.1463' + cli: '1.12.0.1479' - name: Cache All The Things uses: actions/cache@v4 with: diff --git a/CHANGELOG.md b/CHANGELOG.md index 9580eb2..7440bfe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ * Address [#541](https://github.com/seancorfield/honeysql/issues/541) by specifying the expected result of a formatter function passed to `register-clause!` and adding the example from the README to **Extending HoneySQL**. * Getting Started updated based on feedback from Los Angeles Clojure meetup walkthrough [#539](https://github.com/seancorfield/honeysql/issues/539). * Fix [#538](https://github.com/seancorfield/honeysql/issues/538) by removing `mod` from list of infix operators. - * Update Clojure version to 1.12.0. + * Update Clojure version to 1.12.0; update dev/test/ci deps. * 2.6.1161 -- 2024-08-29 * Address [#537](https://github.com/seancorfield/honeysql/issues/537) by ignoring non-scalar values in metadata, and expanding support to numbers, and checking strings for suspicious characters. diff --git a/deps.edn b/deps.edn index a832118..d4d04ba 100644 --- a/deps.edn +++ b/deps.edn @@ -3,7 +3,7 @@ :deps {org.clojure/clojure {:mvn/version "1.9.0"}} :aliases {;; for help: clojure -A:deps -T:build help/doc - :build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.4"} + :build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.5"} slipset/deps-deploy {:mvn/version "0.2.2"}} :ns-default build} @@ -31,7 +31,7 @@ :main-opts ["-m" "cljs-test-runner.main"]} :gen-doc-tests {:replace-paths ["build"] - :extra-deps {babashka/fs {:mvn/version "0.5.21"} + :extra-deps {babashka/fs {:mvn/version "0.5.22"} com.github.lread/test-doc-blocks {:mvn/version "1.1.20"}} :main-opts ["-m" "honey.gen-doc-tests"]} @@ -42,5 +42,5 @@ "-c" "{:warnings,{:single-segment-namespace,false}}" "-d" "target/test-doc-blocks/test"]} - :eastwood {:extra-deps {jonase/eastwood {:mvn/version "1.4.2"}} + :eastwood {:extra-deps {jonase/eastwood {:mvn/version "1.4.3"}} :main-opts ["-m" "eastwood.lint" "{:source-paths,[\"src\"]}"]}}}