Skip to content

Commit

Permalink
Update dependencies and README.
Browse files Browse the repository at this point in the history
  • Loading branch information
mschaef committed Nov 21, 2024
1 parent cd6c60a commit 64540cc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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"]`|
Expand Down Expand Up @@ -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.

Expand Down
6 changes: 3 additions & 3 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@
: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"]]}
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
: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"]]
Expand Down

0 comments on commit 64540cc

Please sign in to comment.