Skip to content

Commit 64d64f5

Browse files
committed
Bumped depedency to Marginalia 9.1
1 parent b0860ee commit 64d64f5

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ A [Leiningen](https://github.com/technomancy/leiningen) plugin for [Marginalia](
66

77
### Leiningen 2
88

9-
Add `[[lein-marginalia "0.9.0"]]` to the `:plugins` entry in
9+
Add `[[lein-marginalia "0.9.1"]]` to the `:plugins` entry in
1010
either your project.clj file or your `:user` profile.
1111

1212
### Leiningen 1
1313

14-
Add `[lein-marginalia "0.9.0"]` to your project.clj's
14+
Add `[lein-marginalia "0.9.1"]` to your project.clj's
1515
`:dev-dependencies` or, install lein-marginalia as a user-level
1616
leiningen plugin by running
17-
`$ lein plugin install lein-marginalia 0.9.0`.
17+
`$ lein plugin install lein-marginalia 0.9.1`.
1818

1919
## Usage
2020

@@ -23,6 +23,6 @@ leiningen plugin by running
2323
License
2424
-------
2525

26-
Copyright (C) 2011-2013 Fogus and contributors.
26+
Copyright (C) 2011-2017 Gary, Fogus and contributors.
2727

2828
Distributed under the Eclipse Public License, the same as Clojure.

project.clj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
(defproject lein-marginalia "0.9.0"
1+
(defproject lein-marginalia "0.9.1"
22
:description "Leiningen plugin for Marginalia."
33
:url "http://github.com/gdeer81/marginalia"
4-
:dependencies [[marginalia "0.9.0"]]
4+
:dependencies [[marginalia "0.9.1"]]
55
:eval-in :leiningen)
6-

src/leiningen/marg.clj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
(eip project form init)
1515
(eip project form nil nil init))))
1616

17-
(def dep ['marginalia "0.9.0"])
17+
(def dep ['marginalia "0.9.1"])
1818

1919
(defn- add-marg-dep [project]
2020
;; Leiningen 2 is a bit smarter about only conjing it in if it
@@ -35,7 +35,7 @@
3535
"Run Marginalia against your project source files.
3636
3737
Usage:
38-
38+
3939
lein marg <options> <files>
4040
4141
Marginalia accepts options as described below:
@@ -53,10 +53,10 @@ Marginalia accepts options as described below:
5353
-a --deps Project dependencies in the form `<group1>:<artifact1>:<version1>;<group2>...`
5454
(Taken from `project.clj` by default.)
5555
56-
-c --css Additional css resources `<resource1>;<resource2>;...`
56+
-c --css Additional css resources `<resource1>;<resource2>;...`
5757
(Taken from `project.clj` by default.)
5858
59-
-j --js Additional javascript resources `<jsfile1>;<jsfile2>;...`
59+
-j --js Additional javascript resources `<jsfile1>;<jsfile2>;...`
6060
(Taken from `project.clj` by default.)
6161
6262
-m --multi Generate each namespace documentation as a separate file"

0 commit comments

Comments
 (0)