Update changelog for 0.9.3

This commit is contained in:
Daniel Compton 2017-05-15 08:29:01 +12:00
parent 1710e86ced
commit cf61b2db1d
1 changed files with 54 additions and 52 deletions

View File

@ -1,5 +1,9 @@
## Unreleased
## 0.9.3 (2017.05.15)
#### Breaking (previously undefined behaviour)
- `reg-sub` enforces using `:<-` to indicate subscription inputs. Previously any keyword would have worked here. While using anything other than `:<-` was undefined behaviour previously, this could possibly break some code when upgrading. Thanks to [@Sohalt](https://github.com/Sohalt) [#336](https://github.com/Day8/re-frame/pull/336).
@ -10,7 +14,7 @@
- Fix ns form in `re-frame.interceptor`. Thanks to [@ggeoffrey](https://github.com/ggeoffrey). [#338](https://github.com/Day8/re-frame/pull/338)
- Even more spelling fixes.
## 0.9.2 (2016.02.09)
## 0.9.2 (2017.02.09)
#### Improvements
@ -427,5 +431,3 @@ call it, like this `(undoable "Some explanation")`
The `explanation` provided to undoable must be either a `string` (static
explanation) or a function `(db event) -> string`, allowing you to customize
the undo message based on details of the event.