Skip to content

Commit

Permalink
1.11.1.1273
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed Apr 12, 2023
1 parent 9bae77d commit 3780d2d
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 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.11.1.1273

- Catch up with clojure CLI of same version

## 1.11.1.1267

- Catch up with clojure CLI of same version
Expand Down
6 changes: 3 additions & 3 deletions deps.bat
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
;; see https://github.com/clojure/brew-install/blob/1.11.1/CHANGELOG.md
(def version
(delay (or (System/getenv "DEPS_CLJ_TOOLS_VERSION")
"1.11.1.1267")))
"1.11.1.1273")))

(def cache-version "4")

(def deps-clj-version "1.11.1.1268-SNAPSHOT")
(def deps-clj-version "1.11.1.1273")

(defn warn [& strs]
(binding [*out* *err*]
Expand Down Expand Up @@ -159,7 +159,6 @@ clj-opts:
-Jopt Pass opt through in java_opts, ex: -J-Xmx512m
-Sdeps EDN Deps data to use as the last deps file to be merged
-Spath Compute classpath and echo to stdout only
-Spom Generate (or update) pom.xml with deps and paths
-Stree Print dependency tree
-Scp CP Do NOT compute or cache classpath, use this one instead
-Srepro Ignore the ~/.clojure/deps.edn config file
Expand Down Expand Up @@ -190,6 +189,7 @@ main-opt:
-h, -?, --help Print this help message and exit

Programs provided by :deps alias:
-X:deps mvn-pom Generate (or update) pom.xml with deps and paths
-X:deps list List full transitive deps set and licenses
-X:deps tree Print deps tree
-X:deps find-versions Find available versions of a library
Expand Down
6 changes: 3 additions & 3 deletions deps.clj
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
;; see https://github.com/clojure/brew-install/blob/1.11.1/CHANGELOG.md
(def version
(delay (or (System/getenv "DEPS_CLJ_TOOLS_VERSION")
"1.11.1.1267")))
"1.11.1.1273")))

(def cache-version "4")

(def deps-clj-version "1.11.1.1268-SNAPSHOT")
(def deps-clj-version "1.11.1.1273")

(defn warn [& strs]
(binding [*out* *err*]
Expand Down Expand Up @@ -154,7 +154,6 @@ clj-opts:
-Jopt Pass opt through in java_opts, ex: -J-Xmx512m
-Sdeps EDN Deps data to use as the last deps file to be merged
-Spath Compute classpath and echo to stdout only
-Spom Generate (or update) pom.xml with deps and paths
-Stree Print dependency tree
-Scp CP Do NOT compute or cache classpath, use this one instead
-Srepro Ignore the ~/.clojure/deps.edn config file
Expand Down Expand Up @@ -185,6 +184,7 @@ main-opt:
-h, -?, --help Print this help message and exit
Programs provided by :deps alias:
-X:deps mvn-pom Generate (or update) pom.xml with deps and paths
-X:deps list List full transitive deps set and licenses
-X:deps tree Print deps tree
-X:deps find-versions Find available versions of a library
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.1.1268-SNAPSHOT
1.11.1.1273
4 changes: 2 additions & 2 deletions src/borkdude/deps.clj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
;; see https://github.com/clojure/brew-install/blob/1.11.1/CHANGELOG.md
(def version
(delay (or (System/getenv "DEPS_CLJ_TOOLS_VERSION")
"1.11.1.1267")))
"1.11.1.1273")))

(def cache-version "4")

Expand Down Expand Up @@ -154,7 +154,6 @@ clj-opts:
-Jopt Pass opt through in java_opts, ex: -J-Xmx512m
-Sdeps EDN Deps data to use as the last deps file to be merged
-Spath Compute classpath and echo to stdout only
-Spom Generate (or update) pom.xml with deps and paths
-Stree Print dependency tree
-Scp CP Do NOT compute or cache classpath, use this one instead
-Srepro Ignore the ~/.clojure/deps.edn config file
Expand Down Expand Up @@ -185,6 +184,7 @@ main-opt:
-h, -?, --help Print this help message and exit
Programs provided by :deps alias:
-X:deps mvn-pom Generate (or update) pom.xml with deps and paths
-X:deps list List full transitive deps set and licenses
-X:deps tree Print deps tree
-X:deps find-versions Find available versions of a library
Expand Down

0 comments on commit 3780d2d

Please sign in to comment.