Skip to content

Commit abc37c4

Browse files
committed
Release 0.4.0
1 parent 32ae901 commit abc37c4

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

CHANGES.md

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

315
Contributions by Ryan Schmukler and Matthew Davidson

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.3.0"]
14+
[manifold "0.4.0"]
1515
```
1616

1717
deps.edn:
1818
```clojure
19-
manifold/manifold {:mvn/version "0.3.0"}
19+
manifold/manifold {:mvn/version "0.4.0"}
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.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"}

src/manifold/deferred.clj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,10 @@
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))

0 commit comments

Comments
 (0)