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+
113### 0.3.0
214
315Contributions 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.
1111
1212Leiningen:
1313``` clojure
14- [manifold " 0.3 .0" ]
14+ [manifold " 0.4 .0" ]
1515```
1616
1717deps.edn:
1818``` clojure
19- manifold/manifold {:mvn/version " 0.3 .0" }
19+ manifold/manifold {:mvn/version " 0.4 .0" }
2020```
2121
2222### Deferreds
Original file line number Diff line number Diff line change 1- (defproject manifold " 0.3 .0"
1+ (defproject manifold " 0.4 .0"
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 7777
7878; ; The potemkin abstract type for
7979; ; implementations such as CompletionStage
80- (def-abstract-type ADeferred
80+ ^{:author " Renan Ribeiro"
81+ :added " 0.4.0" }
82+ (def-abstract-type
83+ ADeferred
8184 CompletionStage
8285 (thenApply [d f]
8386 (then-apply d f))
You can’t perform that action at this time.
0 commit comments