bump tools.build to 0.9.5
This commit is contained in:
parent
9ea5b172bb
commit
7155ca39c3
3 changed files with 3 additions and 6 deletions
|
|
@ -4,6 +4,7 @@ Only accretive/fixative changes will be made from now on.
|
|||
|
||||
* 1.3.next in progress
|
||||
* Address [#256](https://github.com/seancorfield/next-jdbc/issues/256) by adding `with-transaction+options` and `on-connection+options`. Documentation TBD.
|
||||
* Update `tools.build` to 0.9.5 (and remove `:java-opts` from `build/test`)
|
||||
|
||||
* 1.3.883 -- 2023-06-25
|
||||
* Address [#254](https://github.com/seancorfield/next-jdbc/issues/254) by adding `next.jdbc/active-tx?` and adding more explanation to [**Transactions**](https://cljdoc.org/d/com.github.seancorfield/next.jdbc/CURRENT/doc/getting-started/transactions) about the conventions behind transactions and the limitations of thread-local tracking of active transactions in `next.jdbc`.
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@
|
|||
clojure -A:deps -T:build help/doc"
|
||||
(:refer-clojure :exclude [test])
|
||||
(:require [clojure.tools.build.api :as b]
|
||||
[clojure.tools.deps :as t]
|
||||
[deps-deploy.deps-deploy :as dd]))
|
||||
|
||||
(def lib 'com.github.seancorfield/next.jdbc)
|
||||
|
|
@ -25,10 +24,8 @@
|
|||
(doseq [alias [:1.10 :1.11 :master]]
|
||||
(println "\nRunning tests for Clojure" (name alias))
|
||||
(let [basis (b/create-basis {:aliases [:test alias]})
|
||||
combined (t/combine-aliases basis [:test alias])
|
||||
cmds (b/java-command
|
||||
{:basis basis
|
||||
:java-opts (:jvm-opts combined)
|
||||
{:basis basis
|
||||
:main 'clojure.main
|
||||
:main-args ["-m" "cognitect.test-runner"]})
|
||||
{:keys [exit]} (b/process cmds)]
|
||||
|
|
|
|||
3
deps.edn
3
deps.edn
|
|
@ -6,8 +6,7 @@
|
|||
camel-snake-kebab/camel-snake-kebab {:mvn/version "0.4.3"}}
|
||||
:aliases
|
||||
{;; for help: clojure -A:deps -T:build help/doc
|
||||
:build {:deps {io.github.clojure/tools.build
|
||||
{:git/tag "v0.9.4" :git/sha "76b78fe"}
|
||||
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.9.4"}
|
||||
slipset/deps-deploy {:mvn/version "0.2.1"}}
|
||||
:ns-default build}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue