diff --git a/README.md b/README.md index fe97fae..ccd2dcd 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ A new, simpler alternative to `clj-new`. Intended to be installed as a "tool" (Clojure CLI 1.10.3.933 or later). ```bash -clojure -Ttools install io.github.seancorfield/deps-new '{:git/tag "v0.5.1"}' :as new +clojure -Ttools install io.github.seancorfield/deps-new '{:git/tag "v0.5.2"}' :as new ``` > Note: if you are on Windows, read [**Quoting keys and values**](https://clojure.org/reference/deps_and_cli#quoting) in the official **Deps and CLI Reference** documentation to understand how the above command needs to look on Powershell. Or take a look at the [Babashka CLI](#babashka-cli) library support. @@ -249,8 +249,8 @@ viable alternative: ```clojure :new {:deps {org.babashka/cli {:mvn/version "0.2.15"} - io.github.seancorfield/deps-new {:git/tag "v0.5.1" - :git/sha "21cede2"}} + io.github.seancorfield/deps-new {:git/tag "v0.5.1.1" + :git/sha "a05e765"}} :ns-default org.corfield.new :exec-args {} ;; insert default arguments here :main-opts ["-m" "babashka.cli.exec"]} diff --git a/resources/org/corfield/new/template/build/deps.tmpl b/resources/org/corfield/new/template/build/deps.tmpl index 62e2459..7d9b8a1 100644 --- a/resources/org/corfield/new/template/build/deps.tmpl +++ b/resources/org/corfield/new/template/build/deps.tmpl @@ -7,7 +7,7 @@ io.github.cognitect-labs/test-runner {:git/tag "v0.5.1" :git/sha "dfb30dd"} io.github.seancorfield/deps-new - {:git/tag "v0.5.0.1" :git/sha "c4bbcfc"}}} + {:git/tag "v0.5.1.1" :git/sha "a05e765"}}} :build {:deps {io.github.clojure/tools.build {:git/tag "v0.9.2" :git/sha "fe6b140"}} :ns-default build}}} diff --git a/resources/org/corfield/new/template/root/README.md b/resources/org/corfield/new/template/root/README.md index f4633f8..1ae8ce2 100644 --- a/resources/org/corfield/new/template/root/README.md +++ b/resources/org/corfield/new/template/root/README.md @@ -14,7 +14,7 @@ As originally generated, it will produce a new library project when run: Assuming you have installed `deps-new` as your `new` "tool" via: ```bash -clojure -Ttools install io.github.seancorfield/deps-new '{:git/tag "v0.5.1"}' :as new +clojure -Ttools install io.github.seancorfield/deps-new '{:git/tag "v0.5.2"}' :as new ``` > Note: once the template has been published (to a public git repo), the invocation will be the same, except the `:local/root` dependency will be replaced by a git or Maven-like coordinate.