Skip to content

Commit 17c5b0a

Browse files
committed
0.3.0
1 parent babd8a5 commit 17c5b0a

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGES.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
(See [legend](#legend) at the end for some rough definition of the bold labels in front of each item.)
22

3-
### to be released
3+
### 0.3.0
44

5+
- :warning: **Breaking** `derivatives-pool` now returns the record instead of a map with the `get!` and `release!` functions. **If you did not directly call the `derivatives-pool` function (and used the Rum mixins) this should not affect you.** ([e813f1ddfd7](https://github.com/martinklepsch/derivatives/commit/e813f1ddfd7636a5b6371bd4ff5bb75054e28e6c))
6+
- To upgrade replace uses of the `get!` and `release!` functions with their pendants in `org.martinklepsch.derivatives` (same names) and pass the derivatives pool record that is now returned by `derivatives-pool` as first argument.
7+
- Sorry for this breakage I hope it does not affect too many. :raised_hands:
8+
- **Improvement** depend on `cljsjs/react-proptypes` for React 16 compatibility ([#18](https://github.com/martinklepsch/derivatives/pull/18))
59
- **Bugfix** with a spec like `{:db [[] (atom {})]}` it was not possible to get ahold of the `:db` atom. ([64efb6f3](https://github.com/martinklepsch/derivatives/commit/64efb6f3a35c60a8493bb3f2a718e339cee9ff73))
6-
- **Breaking** `derivatives-pool` now returns the record instead of a map with the `get!` and `release!` functions. If you only used the Rum mixins this should not affect you.
710

811
### 0.2.0
912

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ A secondary objective is also to achieve the above without relying on global sta
3535

3636
[](dependency)
3737
```clojure
38-
[org.martinklepsch/derivatives "0.2.0"] ;; latest release
38+
[org.martinklepsch/derivatives "0.3.0"] ;; latest release
3939
```
4040
[](/dependency)
4141

build.boot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
[rum "0.10.8"]
1313
[cljsjs/prop-types "15.5.10-1"]])
1414

15-
(def +version+ "0.2.0")
15+
(def +version+ "0.3.0")
1616
(def github "https://github.com/martinklepsch/derivatives")
1717

1818
(task-options!

0 commit comments

Comments
 (0)