Skip to content

Commit

Permalink
v1.12.0.1479
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed Sep 11, 2024
1 parent 42dae40 commit fb98cdb
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ DEPS_CLJ_TOOLS_VERSION=1.11.1.1165 bb clojure

[deps.clj](https://github.com/borkdude/deps.clj): a faithful port of the clojure CLI bash script to Clojure

## 1.12.0.1479

- Catch up with Clojure CLI 1.12.0.1479

## 1.11.4.1474

- Catch up with Clojure CLI 1.11.4.1474
Expand Down
5 changes: 3 additions & 2 deletions deps.bat
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@
(set! *warn-on-reflection* true)
(def ^:private path-separator (System/getProperty "path.separator"))

;; see https://github.com/clojure/brew-install/blob/1.11.1/CHANGELOG.md
;; see https://github.com/clojure/brew-install/blob/1.12.0/CHANGELOG.md
;; 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.11.4.1474")))
"1.12.0.1479")))

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

Expand Down
5 changes: 3 additions & 2 deletions deps.clj
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@
(set! *warn-on-reflection* true)
(def ^:private path-separator (System/getProperty "path.separator"))

;; see https://github.com/clojure/brew-install/blob/1.11.1/CHANGELOG.md
;; see https://github.com/clojure/brew-install/blob/1.12.0/CHANGELOG.md
;; 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.11.4.1474")))
"1.12.0.1479")))

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

Expand Down
2 changes: 1 addition & 1 deletion resources/DEPS_CLJ_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.11.4.1475-SNAPSHOT
1.12.0.1479
5 changes: 3 additions & 2 deletions src/borkdude/deps.clj
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@
(set! *warn-on-reflection* true)
(def ^:private path-separator (System/getProperty "path.separator"))

;; see https://github.com/clojure/brew-install/blob/1.11.1/CHANGELOG.md
;; see https://github.com/clojure/brew-install/blob/1.12.0/CHANGELOG.md
;; 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.11.4.1474")))
"1.12.0.1479")))

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

Expand Down

0 comments on commit fb98cdb

Please sign in to comment.