diff --git a/README.md b/README.md index b097681..4137202 100644 --- a/README.md +++ b/README.md @@ -6,15 +6,15 @@ A [Leiningen](https://github.com/technomancy/leiningen) plugin for [Marginalia]( ### Leiningen 2 -Add `[[lein-marginalia "0.9.0"]]` to the `:plugins` entry in +Add `[[lein-marginalia "0.9.1"]]` to the `:plugins` entry in either your project.clj file or your `:user` profile. ### Leiningen 1 -Add `[lein-marginalia "0.9.0"]` to your project.clj's +Add `[lein-marginalia "0.9.1"]` to your project.clj's `:dev-dependencies` or, install lein-marginalia as a user-level leiningen plugin by running -`$ lein plugin install lein-marginalia 0.9.0`. +`$ lein plugin install lein-marginalia 0.9.1`. ## Usage @@ -23,6 +23,6 @@ leiningen plugin by running License ------- -Copyright (C) 2011-2013 Fogus and contributors. +Copyright (C) 2011-2017 Gary, Fogus and contributors. Distributed under the Eclipse Public License, the same as Clojure. diff --git a/project.clj b/project.clj index 11b9504..743e3fd 100644 --- a/project.clj +++ b/project.clj @@ -1,6 +1,5 @@ -(defproject lein-marginalia "0.9.0" +(defproject lein-marginalia "0.9.1" :description "Leiningen plugin for Marginalia." :url "http://github.com/gdeer81/marginalia" - :dependencies [[marginalia "0.9.0"]] + :dependencies [[marginalia "0.9.1"]] :eval-in :leiningen) - diff --git a/src/leiningen/marg.clj b/src/leiningen/marg.clj index a7d0257..1b831be 100644 --- a/src/leiningen/marg.clj +++ b/src/leiningen/marg.clj @@ -14,7 +14,7 @@ (eip project form init) (eip project form nil nil init)))) -(def dep ['marginalia "0.9.0"]) +(def dep ['marginalia "0.9.1"]) (defn- add-marg-dep [project] ;; Leiningen 2 is a bit smarter about only conjing it in if it @@ -35,7 +35,7 @@ "Run Marginalia against your project source files. Usage: - + lein marg Marginalia accepts options as described below: @@ -53,10 +53,10 @@ Marginalia accepts options as described below: -a --deps Project dependencies in the form `::;...` (Taken from `project.clj` by default.) --c --css Additional css resources `;;...` +-c --css Additional css resources `;;...` (Taken from `project.clj` by default.) --j --js Additional javascript resources `;;...` +-j --js Additional javascript resources `;;...` (Taken from `project.clj` by default.) -m --multi Generate each namespace documentation as a separate file"