Skip to content

Commit

Permalink
prep for 1.2.377 (sigh!)
Browse files Browse the repository at this point in the history
  • Loading branch information
seancorfield committed Dec 10, 2021
1 parent 28aa29b commit 0f7e1a5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changes

* 1.2.375 -- 2021-12-10
* 1.2.377 -- 2021-12-10
* Address #82 by making shutdown process overridable.
* Update `build-clj` to v0.6.1 (for updated log4j dependency) in all templates and use "slim" dependency for `app` template.
* Update `tools.deps.alpha` to 0.12.1090.
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The easiest way to use `clj-new` is by installing it as a "tool" instead of upda

```bash
# one-off to install clj-new as a tool:
clojure -Ttools install com.github.seancorfield/clj-new '{:git/tag "v1.2.375"}' :as clj-new
clojure -Ttools install com.github.seancorfield/clj-new '{:git/tag "v1.2.377"}' :as clj-new

# commands to create new projects:

Expand All @@ -44,7 +44,7 @@ If you don't want to install `clj-new` as a "tool", you can add an alias to your
```clj
;; add this inside your :aliases map:
:new {:extra-deps {com.github.seancorfield/clj-new
{:mvn/version "1.2.375"}}
{:mvn/version "1.2.377"}}
:exec-fn clj-new/create
:exec-args {:template "app"}}
```
Expand All @@ -53,7 +53,7 @@ A minimal, complete `deps.edn` file with just this `:new` alias would look like

```clj
{:aliases
{:new {:extra-deps {com.github.seancorfield/clj-new {:mvn/version "1.2.375"}}
{:new {:extra-deps {com.github.seancorfield/clj-new {:mvn/version "1.2.377"}}
:exec-fn clj-new/create
:exec-args {:template "app"}}}}
```
Expand Down Expand Up @@ -90,11 +90,11 @@ If you think you are going to be creating more libraries than applications, you
```clj
;; add these into your :aliases map:
:new-app {:extra-deps {com.github.seancorfield/clj-new
{:mvn/version "1.2.375"}}
{:mvn/version "1.2.377"}}
:exec-fn clj-new/create
:exec-args {:template "app"}}
:new-lib {:extra-deps {com.github.seancorfield/clj-new
{:mvn/version "1.2.375"}}
{:mvn/version "1.2.377"}}
:exec-fn clj-new/create
:exec-args {:template "lib"}}}
```
Expand Down Expand Up @@ -589,7 +589,7 @@ You can either say `clojure -Tclj-new generate ...` or add an alias for it:
```clj
;; add this inside your :aliases map:
:generate {:extra-deps {com.github.seancorfield/clj-new
{:mvn/version "1.2.375"}}
{:mvn/version "1.2.377"}}
:exec-fn clj-new/generate}}
```

Expand Down Expand Up @@ -647,7 +647,7 @@ The exec-args available for the `generate` function are:

This project follows the version scheme MAJOR.MINOR.COMMITS where MAJOR and MINOR provide some relative indication of the size of the change, but do not follow semantic versioning. In general, all changes endeavor to be non-breaking (by moving to new names rather than by breaking existing names). COMMITS is an ever-increasing counter of commits since the beginning of this repository.

Latest stable release: 1.2.375
Latest stable release: 1.2.377

## Roadmap

Expand Down
2 changes: 1 addition & 1 deletion src/clj/new/template/deps.edn
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.10.3"}
com.github.seancorfield/clj-new {:mvn/version "1.2.375"}}
com.github.seancorfield/clj-new {:mvn/version "1.2.377"}}
:aliases
{:new {:exec-fn clj-new/create
:exec-args {:template "{{name}}"}}
Expand Down

0 comments on commit 0f7e1a5

Please sign in to comment.