Skip to content

Commit

Permalink
Update to latest deps and add new :dir option to deps programs
Browse files Browse the repository at this point in the history
  • Loading branch information
puredanger committed Mar 8, 2024
1 parent 4e3ec30 commit 27aca00
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Changelog
===========

* next on Mar 8, 2024
* Update to latest tools.deps and Clojure 1.11.2
* Add new :dir option to all programs that use create-basis
* 0.9.49 on Dec 29, 2023
* Update to latest tools.deps
* 0.9.43 on May 31, 2023
Expand Down
4 changes: 2 additions & 2 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{:paths ["src/main/clojure" "src/main/resources"]
:deps {
org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/tools.deps {:mvn/version "0.18.1389"}
org.clojure/clojure {:mvn/version "1.11.2"}
org.clojure/tools.deps {:mvn/version "0.19.1411"}
}
:aliases {
;; clj -M:lint
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<properties>
<!-- used for build -->
<clojure.warnOnReflection>true</clojure.warnOnReflection>
<clojure.version>1.11.1</clojure.version>
<clojure.version>1.11.2</clojure.version>
</properties>

<dependencies>
Expand All @@ -32,7 +32,7 @@
<dependency>
<groupId>org.clojure</groupId>
<artifactId>tools.deps</artifactId>
<version>0.18.1389</version>
<version>0.19.1411</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
4 changes: 4 additions & 0 deletions src/main/clojure/clojure/tools/deps/cli/api.clj
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
:log - :none, :info (default), or :debug
Basis options:
:dir - directory root path, defaults to current directory
:root - dep source, default = :standard
:user - dep source, default = :standard
:project - dep source, default = :standard (\"./deps.edn\")
Expand Down Expand Up @@ -92,6 +93,7 @@
A reason code for inclusion/exclusion may be added at the end of the line.
Basis options:
:dir - directory root path, defaults to current directory\n
:root - dep source, default = :standard
:user - dep source, default = :standard
:project - dep source, default = :standard (\"./deps.edn\")
Expand Down Expand Up @@ -212,6 +214,7 @@
:format :print (default) or :edn
Basis options:
:dir - directory root path, defaults to current directory
:root - dep source, default = :standard
:user - dep source, default = :standard
:project - dep source, default = :standard (\"./deps.edn\")
Expand Down Expand Up @@ -261,6 +264,7 @@
Sources are merged in the order - :root, :user, :project, :extra.
Basis options:
:dir - directory root path, defaults to current directory
:root - dep source, default = :standard
:user - dep source, default = :standard
:project - dep source, default = :standard (\"./deps.edn\")
Expand Down

0 comments on commit 27aca00

Please sign in to comment.