File tree Expand file tree Collapse file tree 4 files changed +26
-4
lines changed Expand file tree Collapse file tree 4 files changed +26
-4
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
3- * Release 1.0.next in progress
4- * Update dependencies to latest versions for testing.
3+ * Release 1.1.next in progress (maybe 1.2.next)
4+ * Update dependencies to latest versions for testing; add multi-version testing script; drop Clojure 1.8 support.
5+
6+ * Release 1.1.230 2024-02-19
7+ * Documentation and dev/test/CI infrastructure updates.
58
69* Release 1.0.219 2023-05-08
710 * Add ClojureCLR support [ TCLI-102] ( https://clojure.atlassian.net/browse/TCLI-102 ) [ @dmiller ] ( https://github.com/dmiller ) .
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ org.clojure/tools.cli {:mvn/version "1.1.230"}
3030```
3131The 0.4.x series of tools.cli supports use with ` clj ` /` deps.edn ` and brings
3232the legacy API to ClojureScript by switching to ` .cljc ` files. This means it
33- requires Clojure(Script) 1.8 or later.
33+ requires Clojure(Script) 1.9 or later.
3434
3535The 0.3.x series of tools.cli features a new flexible API, better adherence
3636to GNU option parsing conventions, and ClojureScript support.
Original file line number Diff line number Diff line change 11{:paths [" src/main/clojure" ]
22 :aliases {:test {:extra-paths [" src/test/clojure" ]}
3- :1.8 {:override-deps {org.clojure/clojure {:mvn/version " 1.8.0" }}}
43 :1.9 {:override-deps {org.clojure/clojure {:mvn/version " 1.9.0" }}}
54 :1.10 {:override-deps {org.clojure/clojure {:mvn/version " 1.10.3" }}}
65 :1.11 {:override-deps {org.clojure/clojure {:mvn/version " 1.11.4" }}}
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ for v in 9 10 11 12
4+ do
5+ echo " "
6+ echo " Running tests for Clojure 1.$v ..."
7+ clojure -M:test:runner:1.$v
8+ if [ $? -ne 0 ]; then
9+ echo " Tests failed for Clojure 1.$v "
10+ exit 1
11+ fi
12+ done
13+
14+ echo " "
15+ echo " Running tests for ClojureScript..."
16+ clojure -M:test:cljs-runner
17+ if [ $? -ne 0 ]; then
18+ echo " Tests failed for ClojureScript"
19+ exit 1
20+ fi
You can’t perform that action at this time.
0 commit comments