Skip to content

Commit b1e0613

Browse files
committed
Release 0.4.1
1 parent 3963f75 commit b1e0613

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ push
1212
/.clj-kondo/.cache
1313
/.clj-kondo/manifold/manifold
1414
/.clj-kondo/potemkin
15+
/.lsp
16+
/.portal

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
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

39
Contributions by Renan Ribeiro, Matthew Davidson, and Arnaud Geiser

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ A detailed discussion of Manifold's rationale can be found [here](doc/rationale.
1111

1212
Leiningen:
1313
```clojure
14-
[manifold "0.4.0"]
14+
[manifold "0.4.1"]
1515
```
1616

1717
deps.edn:
1818
```clojure
19-
manifold/manifold {:mvn/version "0.4.0"}
19+
manifold/manifold {:mvn/version "0.4.1"}
2020
```
2121

2222
### Deferreds

project.clj

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

src/manifold/stream.clj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -958,7 +958,9 @@
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]

0 commit comments

Comments
 (0)