From 7fceefbe5c54594566a437857e25ffead703e3de Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Thu, 5 Sep 2024 22:43:45 -0700 Subject: [PATCH] update test deps to 1.12.0 Signed-off-by: Sean Corfield --- CHANGELOG.md | 3 +++ build.clj | 2 +- deps.edn | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 305f7cd..fdfe1f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changes +* 2.6.next in progress + * Update Clojure version to 1.12.0. + * 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. * Address [#536](https://github.com/seancorfield/honeysql/issues/536) by noting what will not work with PostgreSQL (but works with other databases). diff --git a/build.clj b/build.clj index 4713802..55db722 100644 --- a/build.clj +++ b/build.clj @@ -50,7 +50,7 @@ [:1.9] -- test against Clojure 1.9 (the default) [:1.10] -- test against Clojure 1.10.3 [:1.11] -- test against Clojure 1.11.0 - [:1.12] -- test against Clojure 1.12 alpha + [:1.12] -- test against Clojure 1.12.0 [:cljs] -- test against ClojureScript" [{:keys [aliases] :as opts}] (gen-doc-tests opts) diff --git a/deps.edn b/deps.edn index 84ed559..a832118 100644 --- a/deps.edn +++ b/deps.edn @@ -11,7 +11,7 @@ :1.9 {:override-deps {org.clojure/clojure {:mvn/version "1.9.0"}}} :1.10 {:override-deps {org.clojure/clojure {:mvn/version "1.10.3"}}} :1.11 {:override-deps {org.clojure/clojure {:mvn/version "1.11.4"}}} - :1.12 {:override-deps {org.clojure/clojure {:mvn/version "1.12.0-rc2"}}} + :1.12 {:override-deps {org.clojure/clojure {:mvn/version "1.12.0"}}} :elide ; to test #409 (assertion on helper docstrings) {:jvm-opts ["-Dclojure.compiler.elide-meta=[:doc]"]}