File tree Expand file tree Collapse file tree 4 files changed +19
-4
lines changed Expand file tree Collapse file tree 4 files changed +19
-4
lines changed Original file line number Diff line number Diff line change
1
+ ### 0.4.0
2
+
3
+ Contributions by Renan Ribeiro, Matthew Davidson, and Arnaud Geiser
4
+
5
+ * Manifold deferreds now implement CompletionStage
6
+ * Add clj-kondo support to many macros
7
+ * Clarify how/when upstreams are automatically closed
8
+ * Many docstring improvements
9
+ * Fixed bug in ` go-off ` test
10
+
11
+ Special thanks to newcomer Renan Ribeiro for his major contributions to this release!
12
+
1
13
### 0.3.0
2
14
3
15
Contributions by Ryan Schmukler and Matthew Davidson
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.3 .0" ]
14
+ [manifold " 0.4 .0" ]
15
15
```
16
16
17
17
deps.edn:
18
18
``` clojure
19
- manifold/manifold {:mvn/version " 0.3 .0" }
19
+ manifold/manifold {:mvn/version " 0.4 .0" }
20
20
```
21
21
22
22
### Deferreds
Original file line number Diff line number Diff line change 1
- (defproject manifold " 0.3 .0"
1
+ (defproject manifold " 0.4 .0"
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 77
77
78
78
; ; The potemkin abstract type for
79
79
; ; implementations such as CompletionStage
80
- (def-abstract-type ADeferred
80
+ ^{:author " Renan Ribeiro"
81
+ :added " 0.4.0" }
82
+ (def-abstract-type
83
+ ADeferred
81
84
CompletionStage
82
85
(thenApply [d f]
83
86
(then-apply d f))
You can’t perform that action at this time.
0 commit comments