Skip to content

Commit

Permalink
Bump tools jar to 1.12.0.1495 and bump cache version (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude authored Jan 3, 2025
1 parent f3f621b commit f7cbfcd
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ DEPS_CLJ_TOOLS_VERSION=1.11.1.1165 bb clojure

- Fix [#129](https://github.com/borkdude/deps.clj/issues/129): don't resolve symlink for java executable
- Follow commit `2ddadc972be51917afb1cea57d1c8c40478bd307` from brew-install: print args when `-M` is omitted but expected
- Bump tools.jar to `1.12.0.1495`

## 1.12.0.1488

Expand Down
6 changes: 3 additions & 3 deletions deps.bat
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
;; see https://github.com/clojure/brew-install/blob/1.12.0/src/main/resources/clojure/install/clojure
(def ^:private version
(delay (or (System/getenv "DEPS_CLJ_TOOLS_VERSION")
"1.12.0.1488")))
"1.12.0.1495")))

(def ^:private cache-version "5")
(def ^:private cache-version "6")

(def deps-clj-version
"The current version of deps.clj"
Expand Down Expand Up @@ -1157,7 +1157,7 @@ public class ClojureToolsDownloader {
main-args (into main-args (:args cli-opts))]
(when (and (= :repl mode)
(pos? (count (:args cli-opts))))
(warn "WARNING: Implicit use of clojure.main with options is deprecated, use -M"))
(apply warn "WARNING: Implicit use of clojure.main with options is deprecated, use -M" (:args cli-opts)))
(*clojure-process-fn* {:cmd main-args})))))))

(apply -main *command-line-args*)
6 changes: 3 additions & 3 deletions deps.clj
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
;; see https://github.com/clojure/brew-install/blob/1.12.0/src/main/resources/clojure/install/clojure
(def ^:private version
(delay (or (System/getenv "DEPS_CLJ_TOOLS_VERSION")
"1.12.0.1488")))
"1.12.0.1495")))

(def ^:private cache-version "5")
(def ^:private cache-version "6")

(def deps-clj-version
"The current version of deps.clj"
Expand Down Expand Up @@ -1152,7 +1152,7 @@ public class ClojureToolsDownloader {
main-args (into main-args (:args cli-opts))]
(when (and (= :repl mode)
(pos? (count (:args cli-opts))))
(warn "WARNING: Implicit use of clojure.main with options is deprecated, use -M"))
(apply warn "WARNING: Implicit use of clojure.main with options is deprecated, use -M" (:args cli-opts)))
(*clojure-process-fn* {:cmd main-args})))))))

(apply -main *command-line-args*)
4 changes: 2 additions & 2 deletions src/borkdude/deps.clj
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
;; see https://github.com/clojure/brew-install/blob/1.12.0/src/main/resources/clojure/install/clojure
(def ^:private version
(delay (or (System/getenv "DEPS_CLJ_TOOLS_VERSION")
"1.12.0.1488")))
"1.12.0.1495")))

(def ^:private cache-version "5")
(def ^:private cache-version "6")

(def deps-clj-version
"The current version of deps.clj"
Expand Down

0 comments on commit f7cbfcd

Please sign in to comment.