Skip to content

Commit 8a60a11

Browse files
committed
Prepare for 0.1.13 release
1 parent d73471b commit 8a60a11

File tree

1 file changed

+18
-9
lines changed

1 file changed

+18
-9
lines changed

project.clj

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
(defproject io.aviso/pretty "0.1.13"
2-
:description "Clojure library to help print things, prettily"
3-
:url "https://github.com/AvisoNovate/pretty"
4-
:license {:name "Apache Sofware License 2.0"
5-
:url "http://www.apache.org/licenses/LICENSE-2.0.html"}
6-
;; Normally we don't AOT compile; only when tracking down reflection warnings.
7-
:dependencies [[org.clojure/clojure "1.6.0"]]
8-
:codox {:src-dir-uri "https://github.com/AvisoNovate/pretty/blob/master/"
9-
:src-linenum-anchor-prefix "L"
10-
:defaults {:doc/format :markdown}})
2+
:description "Clojure library to help print things, prettily"
3+
:url "https://github.com/AvisoNovate/pretty"
4+
:license {:name "Apache Sofware License 2.0"
5+
:url "http://www.apache.org/licenses/LICENSE-2.0.html"}
6+
;; Normally we don't AOT compile; only when tracking down reflection warnings.
7+
:dependencies [[org.clojure/clojure "1.6.0"]]
8+
:plugins [[lein-shell "0.4.0"]]
9+
:shell {:commands {"scp" {:dir "doc"}}}
10+
:aliases {"deploy-doc" ["shell"
11+
"scp" "-r" "." "[email protected]:io.aviso/pretty"]
12+
"release" ["do"
13+
"clean,"
14+
"doc,"
15+
"deploy-doc,"
16+
"deploy" "clojars"]}
17+
:codox {:src-dir-uri "https://github.com/AvisoNovate/pretty/blob/master/"
18+
:src-linenum-anchor-prefix "L"
19+
:defaults {:doc/format :markdown}})

0 commit comments

Comments
 (0)