Skip to content

Commit

Permalink
Prepare for 0.1.13 release
Browse files Browse the repository at this point in the history
  • Loading branch information
hlship committed Nov 15, 2014
1 parent d73471b commit 8a60a11
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions project.clj
@@ -1,10 +1,19 @@
(defproject io.aviso/pretty "0.1.13"
:description "Clojure library to help print things, prettily"
:url "https://github.com/AvisoNovate/pretty"
:license {:name "Apache Sofware License 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0.html"}
;; Normally we don't AOT compile; only when tracking down reflection warnings.
:dependencies [[org.clojure/clojure "1.6.0"]]
:codox {:src-dir-uri "https://github.com/AvisoNovate/pretty/blob/master/"
:src-linenum-anchor-prefix "L"
:defaults {:doc/format :markdown}})
:description "Clojure library to help print things, prettily"
:url "https://github.com/AvisoNovate/pretty"
:license {:name "Apache Sofware License 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0.html"}
;; Normally we don't AOT compile; only when tracking down reflection warnings.
:dependencies [[org.clojure/clojure "1.6.0"]]
:plugins [[lein-shell "0.4.0"]]
:shell {:commands {"scp" {:dir "doc"}}}
:aliases {"deploy-doc" ["shell"
"scp" "-r" "." "hlship_howardlewisship@ssh.phx.nearlyfreespeech.net:io.aviso/pretty"]
"release" ["do"
"clean,"
"doc,"
"deploy-doc,"
"deploy" "clojars"]}
:codox {:src-dir-uri "https://github.com/AvisoNovate/pretty/blob/master/"
:src-linenum-anchor-prefix "L"
:defaults {:doc/format :markdown}})

0 comments on commit 8a60a11

Please sign in to comment.