Skip to content

Commit

Permalink
Bumped depedency to Marginalia 9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gdeer81 committed Nov 9, 2017
1 parent b0860ee commit 64d64f5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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.
5 changes: 2 additions & 3 deletions project.clj
Original file line number Diff line number Diff line change
@@ -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)

8 changes: 4 additions & 4 deletions src/leiningen/marg.clj
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -35,7 +35,7 @@
"Run Marginalia against your project source files.
Usage:
lein marg <options> <files>
Marginalia accepts options as described below:
Expand All @@ -53,10 +53,10 @@ Marginalia accepts options as described below:
-a --deps Project dependencies in the form `<group1>:<artifact1>:<version1>;<group2>...`
(Taken from `project.clj` by default.)
-c --css Additional css resources `<resource1>;<resource2>;...`
-c --css Additional css resources `<resource1>;<resource2>;...`
(Taken from `project.clj` by default.)
-j --js Additional javascript resources `<jsfile1>;<jsfile2>;...`
-j --js Additional javascript resources `<jsfile1>;<jsfile2>;...`
(Taken from `project.clj` by default.)
-m --multi Generate each namespace documentation as a separate file"
Expand Down

0 comments on commit 64d64f5

Please sign in to comment.