Skip to content

Commit 404e3b6

Browse files
committed
update internal deps
1 parent 5d13f82 commit 404e3b6

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

bb.edn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
:deps {org.clojure/data.zip {:mvn/version "1.0.0"}
44
io.aviso/pretty {:mvn/version "1.1"}
55
dev.nubank/docopt {:mvn/version "0.6.1-fix7"}
6-
com.github.liquidz/antq {:mvn/version "0.16.1"}
6+
com.github.liquidz/antq {:mvn/version "0.16.3"}
77
doric/doric {:mvn/version "0.9.0"}
8-
version-clj/version-clj {:mvn/version "2.0.1"}
8+
version-clj/version-clj {:mvn/version "2.0.2"}
99
lread/status-line {:git/url "https://github.com/lread/status-line.git"
1010
:sha "35ed39645038e81b42cb15ed6753b8462e60a06d"}}
1111
:tasks {;; setup

deps.edn

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
;; linting
2222
:lint-cache {:replace-paths ["src"]} ;; when building classpath we want to exclude resources
2323
;; so we do not pick up our own clj-kondo config exports
24-
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2021.07.28"}}
24+
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2021.08.06"}}
2525
:main-opts ["-m" "clj-kondo.main"]}
2626

2727
:eastwood {:extra-deps {jonase/eastwood {:mvn/version "0.9.6"}}
@@ -53,7 +53,7 @@
5353
:main-opts ["-m" "kaocha.runner"]}
5454

5555
;; figwheel for clojurescript testing during dev
56-
:fig-test {:extra-deps {com.bhauman/figwheel-main {:mvn/version "0.2.14-SNAPSHOT"}}
56+
:fig-test {:extra-deps {com.bhauman/figwheel-main {:mvn/version "0.2.14"}}
5757
:extra-paths ["target" "test"]
5858
:main-opts ["-m" "figwheel.main" "-b" "fig" "-r"]}
5959

@@ -72,7 +72,7 @@
7272
cli-matic/cli-matic {:mvn/version "0.4.3"}}}
7373

7474
:apply-import-vars {:override-deps {org.clojure/clojure {:mvn/version "1.10.3"}}
75-
:extra-deps {metosin/malli {:mvn/version "0.5.1"}
75+
:extra-deps {metosin/malli {:mvn/version "0.6.1"}
7676
io.aviso/pretty {:mvn/version "1.1"}}
7777
:ns-default lread.apply-import-vars}
7878

@@ -126,7 +126,7 @@
126126
;;
127127
;; Maintenance support
128128
;;
129-
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "0.16.1"}
129+
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "0.16.3"}
130130
org.slf4j/slf4j-simple {:mvn/version "1.7.32"} ;; to rid ourselves of logger warnings
131131
}
132132
:main-opts ["-m" "antq.core"

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"karma-cljs-test": "^0.1.0",
77
"karma-junit-reporter": "^2.0.0",
88
"karma-spec-reporter": "^0.0.32",
9-
"shadow-cljs": "^2.15.2"
9+
"shadow-cljs": "^2.15.5"
1010
}
1111
}

script/test_libs.clj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
[lread.status-line :as status]
1616
[release.version :as version]))
1717

18-
(defn shcmd [cmd & args]
18+
(defn shcmd [cmd & args]
1919
(let [[opts cmd args] (if (map? cmd)
2020
[cmd (first args) (rest args)]
2121
[{} cmd args])]
@@ -101,7 +101,7 @@
101101
(defn- deps-tree [{:keys [home-dir]} cmd]
102102
(let [{:keys [out err]} (shcmd {:dir home-dir
103103
:out :string
104-
:err :string}
104+
:err :string}
105105
cmd)]
106106
(-> (format "stderr->:\n%s\nstdout->:\n%s" err out)
107107
print-deps)))
@@ -303,7 +303,7 @@
303303
;;
304304

305305
(def libs [{:name "antq"
306-
:version "0.16.1"
306+
:version "0.16.3"
307307
:platforms [:clj]
308308
:github-release {:repo "liquidz/antq"}
309309
:patch-fn deps-edn-v1-patch
@@ -323,21 +323,21 @@
323323
:root "cljfmt"
324324
:github-release {:repo "weavejester/cljfmt"
325325
:via :tag}
326-
:patch-fn project-clj-v1-patch
326+
:patch-fn project-clj-v1-patch
327327
:show-deps-fn lein-deps-tree
328328
:test-cmds ["lein test"]}
329329
{:name "cljstyle"
330330
:version "0.15.0"
331331
:platforms [:clj]
332332
:github-release {:repo "greglook/cljstyle"
333333
:via :tag}
334-
:patch-fn project-clj-v1-patch
334+
:patch-fn project-clj-v1-patch
335335
:show-deps-fn lein-deps-tree
336336
:test-cmds ["lein check"
337337
"lein test"]}
338338
{:name "clojure-lsp"
339339
:platforms [:clj]
340-
:version "2021.07.28-14.24.06"
340+
:version "2021.08.16-19.02.30"
341341
:github-release {:repo "clojure-lsp/clojure-lsp"}
342342
:patch-fn clojure-lsp-patch
343343
:show-deps-fn cli-deps-tree

0 commit comments

Comments
 (0)