Skip to content

Commit 7bf2619

Browse files
committed
Release 1.10.0
1 parent eba4108 commit 7bf2619

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ and limits itself to a small set of general-purpose functions.
1313

1414
Add 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

1818
Or to your Leiningen project file:
1919

20-
[dev.weavejester/medley "1.9.0"]
20+
[dev.weavejester/medley "1.10.0"]
2121

2222
Or 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

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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"

src/medley/core.cljc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@
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]
@@ -763,7 +763,8 @@
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]

0 commit comments

Comments
 (0)