File tree Expand file tree Collapse file tree 5 files changed +14
-4
lines changed Expand file tree Collapse file tree 5 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 1212/.clj-kondo /.cache
1313/.clj-kondo /manifold /manifold
1414/.clj-kondo /potemkin
15+ /.lsp
16+ /.portal
Original file line number Diff line number Diff line change 1+ ### 0.4.1
2+
3+ Contributions by Ryan Smith
4+
5+ * Fixes a bug in ` go-off ` when using newer versions of core.async.
6+
17### 0.4.0
28
39Contributions by Renan Ribeiro, Matthew Davidson, and Arnaud Geiser
Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ A detailed discussion of Manifold's rationale can be found [here](doc/rationale.
1111
1212Leiningen:
1313``` clojure
14- [manifold " 0.4.0 " ]
14+ [manifold " 0.4.1 " ]
1515```
1616
1717deps.edn:
1818``` clojure
19- manifold/manifold {:mvn/version " 0.4.0 " }
19+ manifold/manifold {:mvn/version " 0.4.1 " }
2020```
2121
2222### Deferreds
Original file line number Diff line number Diff line change 1- (defproject manifold " 0.4.0 "
1+ (defproject manifold " 0.4.1 "
22 :description " A compatibility layer for event-driven abstractions"
33 :license {:name " MIT License"
44 :url " http://opensource.org/licenses/MIT" }
Original file line number Diff line number Diff line change 958958
959959(defn buffered-stream
960960 " A stream which will buffer at most `limit` data, where the size of each message
961- is defined by `(metric message)`."
961+ is defined by `(metric message)`.
962+
963+ `description` is a fn that takes the existing description map and returns a new one."
962964 ([buffer-size]
963965 (buffered-stream (constantly 1 ) buffer-size))
964966 ([metric limit]
You can’t perform that action at this time.
0 commit comments