Skip to content

Commit

Permalink
0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
martinklepsch committed Jan 16, 2018
1 parent babd8a5 commit 17c5b0a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
(See [legend](#legend) at the end for some rough definition of the bold labels in front of each item.)

### to be released
### 0.3.0

- :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))
- 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.
- Sorry for this breakage I hope it does not affect too many. :raised_hands:
- **Improvement** depend on `cljsjs/react-proptypes` for React 16 compatibility ([#18](https://github.com/martinklepsch/derivatives/pull/18))
- **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))
- **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.

### 0.2.0

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ A secondary objective is also to achieve the above without relying on global sta

[](dependency)
```clojure
[org.martinklepsch/derivatives "0.2.0"] ;; latest release
[org.martinklepsch/derivatives "0.3.0"] ;; latest release
```
[](/dependency)

Expand Down
2 changes: 1 addition & 1 deletion build.boot
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[rum "0.10.8"]
[cljsjs/prop-types "15.5.10-1"]])

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

(task-options!
Expand Down

0 comments on commit 17c5b0a

Please sign in to comment.