Skip to content

Commit

Permalink
prep for v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
seancorfield committed Mar 31, 2023
1 parent 177fcdf commit 21cede2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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"]}
Expand Down
2 changes: 1 addition & 1 deletion resources/org/corfield/new/template/root/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 21cede2

Please sign in to comment.