Skip to content

Commit

Permalink
Update Clojure CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed Mar 28, 2022
1 parent cee6e47 commit 0cae0f9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.1.1100

- Use tools version `1.11.0.1100`

## v0.1.1087

- Use tools version `1.10.3.1087`
Expand Down
4 changes: 2 additions & 2 deletions deps.bat
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.10.3/CHANGELOG.md
(def version (delay (or (System/getenv "DEPS_CLJ_TOOLS_VERSION")
"1.10.3.1087")))
"1.11.0.1100")))

(def deps-clj-version "0.1.1087")
(def deps-clj-version "0.1.1100")

(defn warn [& strs]
(binding [*out* *err*]
Expand Down
4 changes: 2 additions & 2 deletions deps.clj
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@

;; see https://github.com/clojure/brew-install/blob/1.10.3/CHANGELOG.md
(def version (delay (or (System/getenv "DEPS_CLJ_TOOLS_VERSION")
"1.10.3.1087")))
"1.11.0.1100")))

(def deps-clj-version "0.1.1087")
(def deps-clj-version "0.1.1100")

(defn warn [& strs]
(binding [*out* *err*]
Expand Down
2 changes: 1 addition & 1 deletion resources/DEPS_CLJ_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.1087
0.1.1100
2 changes: 1 addition & 1 deletion src/borkdude/deps.clj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

;; see https://github.com/clojure/brew-install/blob/1.10.3/CHANGELOG.md
(def version (delay (or (System/getenv "DEPS_CLJ_TOOLS_VERSION")
"1.10.3.1087")))
"1.11.0.1100")))

(def deps-clj-version
(-> (io/resource "DEPS_CLJ_VERSION")
Expand Down

0 comments on commit 0cae0f9

Please sign in to comment.