Skip to content

Commit ff2f3a2

Browse files
committed
Why do I always forget this
1 parent d7ee3dc commit ff2f3a2

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

CHANGES.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# lein-shell changelog
22

3+
## 0.4.1 [`tag`][0.4.1-tag]
4+
5+
* Custom `:shell :commands` can now be vectors instead of strings only, making
6+
it act like Lein aliases.
7+
38
## 0.4.0 [`tag`][0.4.0-tag]
49

510
* By default, stdin is piped in to shell commands. You can now specify that
@@ -28,6 +33,7 @@
2833

2934
* First release!
3035

36+
[0.4.1-tag]: https://github.com/hyPiRion/lein-shell/tree/0.4.1
3137
[0.4.0-tag]: https://github.com/hyPiRion/lein-shell/tree/0.4.0
3238
[0.3.0-tag]: https://github.com/hyPiRion/lein-shell/tree/0.3.0
3339
[0.2.0-tag]: https://github.com/hyPiRion/lein-shell/tree/0.2.0

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ project.
55

66
## Installation
77

8-
Put `[lein-shell "0.4.0"]` into the `:plugins` vector of your `:user` profile
8+
Put `[lein-shell "0.4.1"]` into the `:plugins` vector of your `:user` profile
99
inside `~/.lein/profiles.clj` if you want to use lein shell on a per user basis
1010
(this doesn't *really* make much sense, but you're allowed to if you want to!).
1111

1212
To explicitly say that this project needs lein-shell to be built, putt
13-
`[lein-shell "0.4.0"]` into the `:plugins` vector of your `project.clj`. If you
13+
`[lein-shell "0.4.1"]` into the `:plugins` vector of your `project.clj`. If you
1414
have no `:plugins` vector in your `project.clj`, it should look like this:
1515

1616
```clj
1717
(defproject your-project-here "version"
1818
...
19-
:plugins [[lein-shell "0.4.0"]]
19+
:plugins [[lein-shell "0.4.1"]]
2020
...)
2121
```
2222

doc/DOCUMENTATION.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ be configurable enough that such things can be done through modifications in the
1212

1313
## Installation
1414

15-
Put `[lein-shell "0.4.0"]` into the `:plugins` vector of your `:user` profile
15+
Put `[lein-shell "0.4.1"]` into the `:plugins` vector of your `:user` profile
1616
inside `~/.lein/profiles.clj` if you want to use lein shell on a per user basis
1717
(this doesn't *really* make much sense, but you're allowed to if you want to!).
1818

1919
To explicitly say that this project needs lein-shell to be built, putt
20-
`[lein-shell "0.4.0"]` into the `:plugins` vector of your `project.clj`. If you
20+
`[lein-shell "0.4.1"]` into the `:plugins` vector of your `project.clj`. If you
2121
have no `:plugins` vector in your `project.clj`, it should look like this:
2222

2323
```clj
2424
(defproject your-project-here "version"
2525
...
26-
:plugins [[lein-shell "0.4.0"]]
26+
:plugins [[lein-shell "0.4.1"]]
2727
...)
2828
```
2929

@@ -68,7 +68,7 @@ uberjaring, testing and repl'ing, I can do this:
6868
:prep-tasks [["shell" "generator" "--in" "build/in.grammar"
6969
"--out" "src/out.clj"]
7070
"javac" "compile"]
71-
:plugins [[lein-shell "0.4.0"]])
71+
:plugins [[lein-shell "0.4.1"]])
7272
```
7373

7474
Now, the command `generator --in build/in.grammar --out src/out.clj` will always
@@ -102,7 +102,7 @@ that:
102102
```clj
103103
(defproject package.name/project "0.1.0-SNAPSHOT"
104104
...
105-
:plugins [[lein-shell "0.4.0"]]
105+
:plugins [[lein-shell "0.4.1"]]
106106
:aliases {"javadoc" ["shell" "javadoc" "-d" "javadoc"
107107
"-sourcepath" "src/" "package.name"]
108108
"jar" ["do" "javadoc," "jar"]}}})

0 commit comments

Comments
 (0)