Skip to content

Commit 06b34b1

Browse files
committed
Push to clojars & update docs
1 parent 0f82622 commit 06b34b1

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ single file, self-contained scripts in Clojure that can include dependencies and
88
so forth but don't need to be part of a project or uberjar. Also, boot is a
99
Clojure build tool.
1010

11+
## Dependency
12+
13+
Artifacts are published on Clojars.
14+
15+
[![latest version][2]][3]
16+
1117
## Overview
1218

1319
Boot consists of two parts: the boot **loader** (this project), and the boot
@@ -627,12 +633,6 @@ are synced over to it.
627633

628634
FIXME
629635

630-
## Dependency
631-
632-
Artifacts are published on Clojars.
633-
634-
[![latest version][2]][3]
635-
636636
## License
637637

638638
Copyright © 2013 Alan Dipert and Micha Niskin
@@ -646,7 +646,7 @@ Distributed under the Eclipse Public License, the same as Clojure.
646646
[5]: https://github.com/tailrecursion/boot.core/blob/master/src/tailrecursion/boot/core/task.clj
647647
[6]: https://github.com/tailrecursion/hoplon/blob/master/src/tailrecursion/hoplon/boot.clj
648648
[7]: https://raw.github.com/tailrecursion/boot/master/img/files.gif
649-
[8]: https://clojars.org/repo/tailrecursion/boot/1.0.3/boot-1.0.3.jar
649+
[8]: https://clojars.org/repo/tailrecursion/boot/1.0.4/boot-1.0.4.jar
650650

651651
[10]: https://github.com/mmcgrana/ring
652652
[20]: https://github.com/tailrecursion/boot.task

script/push

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ v=$(cat project.clj |head -1 |awk '{print $3}' |sed 's/"//g')
1010
if [ "$VERSION" == "$v" ]; then
1111
git tag -a -m "$MESSAGE" "$VERSION"
1212
git push --tags
13-
lein push
13+
lein pom
14+
cp boot boot.jar
15+
scp pom.xml boot.jar [email protected]:
1416
else
1517
echo "$0: version doesn't match project.clj" 1>&2
1618
exit 1

0 commit comments

Comments
 (0)