Skip to content

Commit 23282ea

Browse files
committed
update to latest deps
1 parent 181ef9c commit 23282ea

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

deps.edn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
org.clojure/tools.deps {:mvn/version "0.18.1354"}
66
;org.clojure/tools.deps {:git/url "https://github.com/clojure/tools.deps.git"
77
; :git/sha "459222ca6e4fce91cf5838435589a028cedbc784"}
8-
org.clojure/tools.namespace {:mvn/version "1.3.0"}
8+
org.clojure/tools.namespace {:mvn/version "1.4.4"}
99
org.slf4j/slf4j-nop {:mvn/version "1.7.36"}}
1010

1111
:aliases
@@ -32,7 +32,7 @@
3232

3333
;; Lint the source
3434
;; clj -M:lint
35-
:lint {:replace-deps {clj-kondo/clj-kondo {:mvn/version "2022.12.10"}}
35+
:lint {:replace-deps {clj-kondo/clj-kondo {:mvn/version "2023.07.13"}}
3636
:main-opts ["-m" "clj-kondo.main" "--lint" "src"]}
3737
}
3838
}

src/test/clojure/clojure/tools/build/test_util.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
(:import
1616
[java.io File]))
1717

18-
(def ^:dynamic ^File *test-dir*)
18+
(def ^:dynamic ^File *test-dir* nil)
1919

2020
(defmacro with-test-dir
2121
[test-project & body]
@@ -39,4 +39,4 @@
3939
m1)
4040
(= m1 m2)))
4141

42-
(def windows? (str/starts-with? (System/getProperty "os.name") "Windows"))
42+
(def windows? (str/starts-with? (System/getProperty "os.name") "Windows"))

0 commit comments

Comments
 (0)