From a9058cde18eae803347446199eabdb64a4b620df Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sat, 28 Sep 2024 11:51:51 -0700 Subject: [PATCH] fixes #285 Signed-off-by: Sean Corfield --- CHANGELOG.md | 1 + deps.edn | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25d5b07..ad7b0c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ Only accretive/fixative changes will be made from now on. * 1.3.next in progress + * Address [#285](https://github.com/seancorfield/next-jdbc/issues/285) by setting the default Clojure version to the earliest supported (1.10.3) to give a better hint to users. * Update PostgreSQL **Tips & Tricks** example code to fix possible NPE. PR [#284](https://github.com/seancorfield/next-jdbc/pull/284) from [@ExNexu](https://github.com/ExNexu). * Address [#283](https://github.com/seancorfield/next-jdbc/issues/283) by adding a note in the documentation, linking to the PostgreSQL bug report about `ANY(array)`. * Address [#269](https://github.com/seancorfield/next-jdbc/issues/269) by adding `:name-fn` as an option (primarily for the SQL builder functions, but also for result set processing); the default is `clojure.core/name` but you can now use `next.jdbc.sql.builder/qualified-name` to preserve the qualifier. diff --git a/deps.edn b/deps.edn index ba7b8f7..27dc0ac 100644 --- a/deps.edn +++ b/deps.edn @@ -1,6 +1,6 @@ {:mvn/repos {"sonatype" {:url "https://oss.sonatype.org/content/repositories/snapshots/"}} :paths ["src" "resources"] - :deps {org.clojure/clojure {:mvn/version "1.11.4"} + :deps {org.clojure/clojure {:mvn/version "1.10.3"} org.clojure/java.data {:mvn/version "1.2.107"} camel-snake-kebab/camel-snake-kebab {:mvn/version "0.4.3"}}