diff --git a/README.md b/README.md index 53f4baf..9d7a4a6 100644 --- a/README.md +++ b/README.md @@ -2,16 +2,14 @@ Yesql is a Clojure library for _using_ SQL. -[![Build Status](https://travis-ci.org/krisajenkins/yesql.png?branch=travis)](https://travis-ci.org/krisajenkins/yesql) - ## Status Thawing. Assistance maintaining sought. -Tested with Clojure 1.7-1.11.1. +Tested with Clojure 1.7-1.12.0. [Kris Jenkins](https://twitter.com/krisajenkins) originally wrote and -maintained this project, and [Mike Schaeffer](https://twitter.com/mschaef_ectw) +maintained this project, and [Mike Schaeffer](https://mschaef.com) is taking on forward maintenance. Please contact Mike with issues, suggestions, and questions. @@ -36,7 +34,7 @@ check, because there may be a newer version available): |Database|`:dependencies` Entry| |---|---| -|Derby|`[org.apache.derby/derby "10.15.2.0"]`| +|Derby|`[org.apache.derby/derby "10.16.1.1"]`| |H2|`[com.h2database/h2 "2.1.212"]`| |HyperSQL|`[org.hsqldb/hsqldb "2.6.1"]`| |MySQL|`[mysql/mysql-connector-java "8.0.29"]`| @@ -412,6 +410,7 @@ Yesql has inspired ports to other languages: ## License Copyright © 2013-2016 Kris Jenkins +Copyright © 2023-2024 Mike Schaeffer Distributed under the Eclipse Public License, the same as Clojure. diff --git a/project.clj b/project.clj index 86ab3cb..37368ee 100644 --- a/project.clj +++ b/project.clj @@ -3,14 +3,14 @@ :url "https://github.com/krisajenkins/yesql" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} - :dependencies [[org.clojure/clojure "1.11.4"] + :dependencies [[org.clojure/clojure "1.12.0"] [org.clojure/java.jdbc "0.7.12" :exclusions [org.clojure/clojure]] [instaparse "1.5.0" :exclusions [org.clojure/clojure]]] :pedantic? :abort :scm {:name "git" :url "https://github.com/krisajenkins/yesql"} :profiles {:dev {:dependencies [[expectations "2.1.10" :exclusions [org.clojure/clojure]] - [org.apache.derby/derby "10.17.1.0"]] + [org.apache.derby/derby "10.16.1.1"]] :plugins [[lein-autoexpect "1.4.0"] [lein-expectations "0.0.8" :exclusions [org.clojure/clojure]]]} :1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]} @@ -18,7 +18,7 @@ :1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]} :1.10 {:dependencies [[org.clojure/clojure "1.10.3"]]} :1.11 {:dependencies [[org.clojure/clojure "1.11.4"]]} - :1.12 {:dependencies [[org.clojure/clojure "1.12.0-rc1"]]}} + :1.12 {:dependencies [[org.clojure/clojure "1.12.0"]]}} :aliases {"test-all" ["with-profile" "+1.7:+1.8:+1.9:+1.10:+1.11:+1.12" "do" ["clean"] ["expectations"]]