|
1 | 1 | # Changelog
|
2 | 2 |
|
| 3 | +## ✨ **0.3.0** _(2021-03-13)_ |
| 4 | + |
| 5 | +#### Changelog |
| 6 | + |
| 7 | +- #### ⚡️ Features |
| 8 | + |
| 9 | + - Nested effects. Inner effects are destroyed and recreated when outer effects re-run [[@lukechu10], [#29](https://github.com/lukechu10/maple/pull/29)] |
| 10 | + - `cloned!` macro for making it easier to clone items into a new scope [[@lukechu10], [#34](https://github.com/lukechu10/maple/pull/34)] |
| 11 | + - Effects are created inside a reactivity root (using `create_root`). When the root `Owner` is dropped, all effects are also destroyed [[@lukechu10], [37](https://github.com/lukechu10/maple/pull/37)] |
| 12 | + - Nested templates. Using this, it is also possible to build simple `if`/`else` control flow although there will be a more polished version [[@lukechu10], [#41](https://github.com/lukechu10/maple/pull/41)] |
| 13 | + |
| 14 | +- #### 🛠 Fixes |
| 15 | + |
| 16 | + - Parse html root as an `HtmlTree` [[@lukechu10], [#25](https://github.com/lukechu10/maple/pull/25)] |
| 17 | + - Recreate effect dependencies on each re-run [[@lukechu10], [#29](https://github.com/lukechu10/maple/pull/29)] |
| 18 | + |
| 19 | +- #### 🛠 Internal Fixes and Improvements |
| 20 | + |
| 21 | + - Remove double boxing of `Computation` [[@Kestrer], [#31](https://github.com/lukechu10/maple/pull/31)] |
| 22 | + - Create `CODE_OF_CONDUCT.md` [[@lukechu10], [#33](https://github.com/lukechu10/maple/pull/33)] |
| 23 | + - Add some preliminary benchmarks for signals and effects [[@lukechu10], [#35](https://github.com/lukechu10/maple/pull/35)] |
| 24 | + - Add clippy to CI workflow [[@Kestrer], [#42](https://github.com/lukechu10/maple/pull/42)] |
| 25 | + |
| 26 | +- #### ⚠ **BREAKING CHANGES** |
| 27 | + |
| 28 | + - Replaced `create_signal` with `Signal::new(...)` and return `Signal` instead of getter/setter functions for increased type safety [[@Kestrer], [#20](https://github.com/lukechu10/maple/pull/20)] |
| 29 | + |
| 30 | +- #### 📢 Announcements |
| 31 | + |
| 32 | + - New documentation website: https://maple-rs.netlify.app/ [[@lukechu10], [#26](https://github.com/lukechu10/maple/pull/26) and [#40](https://github.com/lukechu10/maple/pull/40)] |
| 33 | + |
3 | 34 | ## ✨ **0.2.0** _(2021-03-07)_
|
4 | 35 |
|
| 36 | +#### Changelog |
| 37 | + |
5 | 38 | - #### ⚡️ Features
|
6 | 39 |
|
7 | 40 | - Components! In `maple` they are simply plain old functions that take their props via their parameters [[#9](https://github.com/lukechu10/maple/pull/9)]
|
|
31 | 64 | - Initial release!
|
32 | 65 | - Added `template!` macro.
|
33 | 66 | - Added reactivity primitives.
|
| 67 | + |
| 68 | +[@Kestrer]: https://github.com/Kestrer |
| 69 | +[@lukechu10]: https://github.com/lukechu10 |
0 commit comments