File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -13,15 +13,15 @@ and limits itself to a small set of general-purpose functions.
1313
1414Add the following dependency to your deps.edn file:
1515
16- dev.weavejester/medley {:mvn/version "1.9 .0"}
16+ dev.weavejester/medley {:mvn/version "1.10 .0"}
1717
1818Or to your Leiningen project file:
1919
20- [dev.weavejester/medley "1.9 .0"]
20+ [dev.weavejester/medley "1.10 .0"]
2121
2222Or to your deps-clr.edn file:
2323
24- io.github.weavejester/medley {:git/tag "FIXME " :git/sha "FIXME"}
24+ io.github.weavejester/medley {:git/tag "1.10.0 " :git/sha "FIXME"}
2525
2626## Documentation
2727
Original file line number Diff line number Diff line change 1- (defproject dev.weavejester /medley " 1.9 .0"
1+ (defproject dev.weavejester /medley " 1.10 .0"
22 :description " A lightweight library of useful, mostly pure functions"
33 :url " https://github.com/weavejester/medley"
44 :license {:name " Eclipse Public License"
Original file line number Diff line number Diff line change 737737 (defn map-padded
738738 " Similar to `clojure.core/map`, except that it runs until all colls are
739739 exhausted, using `val` as the missing value for each exhausted coll."
740- {:added " <<next>> " }
740+ {:added " 1.10.0 " }
741741 #_ {:clj-kondo/ignore [:unused-binding ]}
742742 ([f val c1] (map f c1))
743743 ([f val c1 c2]
763763
764764(defn sequence-padded
765765 " Similar to `clojure.core/sequence`, except that it runs until all colls are
766- exhausted, using `val` as the missing value for each exhausted coll."
766+ exhausted, using `val` as the missing value for each exhausted coll."
767+ {:added " 1.10.0" }
767768 #_ {:clj-kondo/ignore [:unused-binding ]}
768769 ([xform val c1] (sequence xform c1))
769770 ([xform val c1 & colls]
You can’t perform that action at this time.
0 commit comments