@@ -51,7 +51,7 @@ The core version declaration tells the boot loader which version of the boot
51
51
core to use:
52
52
53
53
``` clojure
54
- #tailrecursion.boot.core/version " 2.3.1 "
54
+ #tailrecursion.boot.core/version " 2.5.0 "
55
55
```
56
56
57
57
Any remaining forms in the script file are evaluated in the boot environment:
@@ -109,7 +109,7 @@ A simple example to get started:
109
109
``` clojure
110
110
#! /usr/bin/env boot
111
111
112
- #tailrecursion.boot.core/version " 2.0 .0"
112
+ #tailrecursion.boot.core/version " 2.5 .0"
113
113
114
114
(defn -main [& args]
115
115
(println " hello, world!" )
@@ -129,7 +129,7 @@ Scripts can add Maven repositories and/or dependencies at runtime using
129
129
``` clojure
130
130
#! /usr/bin/env boot
131
131
132
- #tailrecursion.boot.core/version " 2.0 .0"
132
+ #tailrecursion.boot.core/version " 2.5 .0"
133
133
134
134
(set-env!
135
135
:repositories #{" http://me.com/maven-repo" }
@@ -161,7 +161,7 @@ The resulting file should contain something like this:
161
161
``` clojure
162
162
#! /usr/bin/env boot
163
163
164
- #tailrecursion.boot.core/version " 2.0 .0"
164
+ #tailrecursion.boot.core/version " 2.5 .0"
165
165
```
166
166
167
167
Then run it. You should see version and usage info and a list of available
@@ -208,7 +208,7 @@ Let's create a task to print a friendly greeting to the terminal. Modify the
208
208
``` clojure
209
209
#! /usr/bin/env boot
210
210
211
- #tailrecursion.boot.core/version " 2.0 .0"
211
+ #tailrecursion.boot.core/version " 2.5 .0"
212
212
213
213
(deftask hello
214
214
" Print a friendly greeting."
@@ -315,7 +315,7 @@ Modify the `build.boot` file such that it contains the following:
315
315
``` clojure
316
316
#! /usr/bin/env boot
317
317
318
- #tailrecursion.boot.core/version " 2.0 .0"
318
+ #tailrecursion.boot.core/version " 2.5 .0"
319
319
320
320
(deftask hello
321
321
" Print a friendly greeting."
@@ -352,7 +352,7 @@ For example:
352
352
``` clojure
353
353
#! /usr/bin/env boot
354
354
355
- #tailrecursion.boot.core/version " 2.0 .0"
355
+ #tailrecursion.boot.core/version " 2.5 .0"
356
356
357
357
(set-env!
358
358
:project 'com.me/my-project
@@ -399,7 +399,7 @@ For example:
399
399
``` clojure
400
400
#! /usr/bin/env boot
401
401
402
- #tailrecursion.boot.core/version " 2.0 .0"
402
+ #tailrecursion.boot.core/version " 2.5 .0"
403
403
404
404
(set-env!
405
405
:project 'com.me/my-project
@@ -446,7 +446,7 @@ For example:
446
446
``` clojure
447
447
#! /usr/bin/env boot
448
448
449
- #tailrecursion.boot.core/version " 2.0 .0"
449
+ #tailrecursion.boot.core/version " 2.5 .0"
450
450
451
451
(set-env!
452
452
:project 'com.me/my-project
0 commit comments