From 21cede2532b88a7d1cef806d38ff7282536e732c Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Fri, 31 Mar 2023 12:13:45 -0700 Subject: [PATCH] prep for v0.5.1 --- CHANGELOG.md | 2 +- README.md | 6 +++--- resources/org/corfield/new/template/root/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fd7ea7..b0b574b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changes -* v0.5.0.1 c4bbcfc -- 2023-03-31 +* v0.5.1 -- 2023-03-31 * Fix [#47](https://github.com/seancorfield/deps-new/issues/47) by adding `:only` to template project specs. * v0.5.0 48bf01e -- 2023-01-31 diff --git a/README.md b/README.md index 9d40b56..7b36c07 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.0"}' :as new +clojure -Ttools install io.github.seancorfield/deps-new '{:git/tag "v0.5.1"}' :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. @@ -245,8 +245,8 @@ viable alternative: ```clojure :new {:deps {org.babashka/cli {:mvn/version "0.2.15"} - io.github.seancorfield/deps-new {:git/tag "v0.5.0" - :git/sha "879c4eb"}} + io.github.seancorfield/deps-new {:git/tag "v0.5.1" + :git/sha "..."}} :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/root/README.md b/resources/org/corfield/new/template/root/README.md index 36d2750..f4633f8 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.0"}' :as new +clojure -Ttools install io.github.seancorfield/deps-new '{:git/tag "v0.5.1"}' :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.