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 12
12
/.clj-kondo /.cache
13
13
/.clj-kondo /manifold /manifold
14
14
/.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
+
1
7
### 0.4.0
2
8
3
9
Contributions 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.
11
11
12
12
Leiningen:
13
13
``` clojure
14
- [manifold " 0.4.0 " ]
14
+ [manifold " 0.4.1 " ]
15
15
```
16
16
17
17
deps.edn:
18
18
``` clojure
19
- manifold/manifold {:mvn/version " 0.4.0 " }
19
+ manifold/manifold {:mvn/version " 0.4.1 " }
20
20
```
21
21
22
22
### Deferreds
Original file line number Diff line number Diff line change 1
- (defproject manifold " 0.4.0 "
1
+ (defproject manifold " 0.4.1 "
2
2
:description " A compatibility layer for event-driven abstractions"
3
3
:license {:name " MIT License"
4
4
:url " http://opensource.org/licenses/MIT" }
Original file line number Diff line number Diff line change 958
958
959
959
(defn buffered-stream
960
960
" 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."
962
964
([buffer-size]
963
965
(buffered-stream (constantly 1 ) buffer-size))
964
966
([metric limit]
You can’t perform that action at this time.
0 commit comments