Skip to content

Commit e9a2064

Browse files
committed
updated boot core version declaration in examples.
1 parent 4f8bdc3 commit e9a2064

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The core version declaration tells the boot loader which version of the boot
5151
core to use:
5252

5353
```clojure
54-
#tailrecursion.boot.core/version "2.3.1"
54+
#tailrecursion.boot.core/version "2.5.0"
5555
```
5656

5757
Any remaining forms in the script file are evaluated in the boot environment:
@@ -109,7 +109,7 @@ A simple example to get started:
109109
```clojure
110110
#!/usr/bin/env boot
111111

112-
#tailrecursion.boot.core/version "2.0.0"
112+
#tailrecursion.boot.core/version "2.5.0"
113113

114114
(defn -main [& args]
115115
(println "hello, world!")
@@ -129,7 +129,7 @@ Scripts can add Maven repositories and/or dependencies at runtime using
129129
```clojure
130130
#!/usr/bin/env boot
131131

132-
#tailrecursion.boot.core/version "2.0.0"
132+
#tailrecursion.boot.core/version "2.5.0"
133133

134134
(set-env!
135135
:repositories #{"http://me.com/maven-repo"}
@@ -161,7 +161,7 @@ The resulting file should contain something like this:
161161
```clojure
162162
#!/usr/bin/env boot
163163

164-
#tailrecursion.boot.core/version "2.0.0"
164+
#tailrecursion.boot.core/version "2.5.0"
165165
```
166166

167167
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
208208
```clojure
209209
#!/usr/bin/env boot
210210

211-
#tailrecursion.boot.core/version "2.0.0"
211+
#tailrecursion.boot.core/version "2.5.0"
212212

213213
(deftask hello
214214
"Print a friendly greeting."
@@ -315,7 +315,7 @@ Modify the `build.boot` file such that it contains the following:
315315
```clojure
316316
#!/usr/bin/env boot
317317

318-
#tailrecursion.boot.core/version "2.0.0"
318+
#tailrecursion.boot.core/version "2.5.0"
319319

320320
(deftask hello
321321
"Print a friendly greeting."
@@ -352,7 +352,7 @@ For example:
352352
```clojure
353353
#!/usr/bin/env boot
354354

355-
#tailrecursion.boot.core/version "2.0.0"
355+
#tailrecursion.boot.core/version "2.5.0"
356356

357357
(set-env!
358358
:project 'com.me/my-project
@@ -399,7 +399,7 @@ For example:
399399
```clojure
400400
#!/usr/bin/env boot
401401

402-
#tailrecursion.boot.core/version "2.0.0"
402+
#tailrecursion.boot.core/version "2.5.0"
403403

404404
(set-env!
405405
:project 'com.me/my-project
@@ -446,7 +446,7 @@ For example:
446446
```clojure
447447
#!/usr/bin/env boot
448448

449-
#tailrecursion.boot.core/version "2.0.0"
449+
#tailrecursion.boot.core/version "2.5.0"
450450

451451
(set-env!
452452
:project 'com.me/my-project

0 commit comments

Comments
 (0)