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
|
* 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.
|
* 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
|
* 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`.
|
* 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"
|
clojure -A:deps -T:build help/doc"
|
||||||
(:refer-clojure :exclude [test])
|
(:refer-clojure :exclude [test])
|
||||||
(:require [clojure.tools.build.api :as b]
|
(:require [clojure.tools.build.api :as b]
|
||||||
[clojure.tools.deps :as t]
|
|
||||||
[deps-deploy.deps-deploy :as dd]))
|
[deps-deploy.deps-deploy :as dd]))
|
||||||
|
|
||||||
(def lib 'com.github.seancorfield/next.jdbc)
|
(def lib 'com.github.seancorfield/next.jdbc)
|
||||||
|
|
@ -25,10 +24,8 @@
|
||||||
(doseq [alias [:1.10 :1.11 :master]]
|
(doseq [alias [:1.10 :1.11 :master]]
|
||||||
(println "\nRunning tests for Clojure" (name alias))
|
(println "\nRunning tests for Clojure" (name alias))
|
||||||
(let [basis (b/create-basis {:aliases [:test alias]})
|
(let [basis (b/create-basis {:aliases [:test alias]})
|
||||||
combined (t/combine-aliases basis [:test alias])
|
|
||||||
cmds (b/java-command
|
cmds (b/java-command
|
||||||
{:basis basis
|
{:basis basis
|
||||||
:java-opts (:jvm-opts combined)
|
|
||||||
:main 'clojure.main
|
:main 'clojure.main
|
||||||
:main-args ["-m" "cognitect.test-runner"]})
|
:main-args ["-m" "cognitect.test-runner"]})
|
||||||
{:keys [exit]} (b/process cmds)]
|
{: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"}}
|
camel-snake-kebab/camel-snake-kebab {:mvn/version "0.4.3"}}
|
||||||
:aliases
|
:aliases
|
||||||
{;; for help: clojure -A:deps -T:build help/doc
|
{;; for help: clojure -A:deps -T:build help/doc
|
||||||
:build {:deps {io.github.clojure/tools.build
|
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.9.4"}
|
||||||
{:git/tag "v0.9.4" :git/sha "76b78fe"}
|
|
||||||
slipset/deps-deploy {:mvn/version "0.2.1"}}
|
slipset/deps-deploy {:mvn/version "0.2.1"}}
|
||||||
:ns-default build}
|
:ns-default build}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue