diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ff13036d..50b40f70d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,22 @@ # Changelog -## ✨ **0.1.0** *(2021-03-06) +## ✨ **0.1.1** _(2021-03-07)_ #### Changelog - #### ⚡️ Features - - Initial release! - - Added `template!` macro. - - Added reactivity primitives. + - New `untracked` utility for explicitly opting out of automatic dependency detection in reactive contexts [[#8](https://github.com/lukechu10/maple/pull/8)] + +- #### 🛠 Fixes + - Only subscribe to a dependency once in an effect, even if it is called multiple times [[#7](https://github.com/lukechu10/maple/pull/7)] + +## ✨ **0.1.0** _(2021-03-06)_ + +#### Changelog + +- #### ⚡️ Features + + - Initial release! + - Added `template!` macro. + - Added reactivity primitives. diff --git a/README.md b/README.md index 3a177a028..cbfe7bcd7 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The recommended build tool is [Trunk](https://trunkrs.dev/). Start by adding `maple-core` to your `Cargo.toml`: ```toml -maple-core = "0.1.0" +maple-core = "0.1.1" ``` Add the following to your `src/main.rs` file: diff --git a/maple-core-macro/Cargo.toml b/maple-core-macro/Cargo.toml index 8303ca575..4d18ffa7b 100644 --- a/maple-core-macro/Cargo.toml +++ b/maple-core-macro/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT" name = "maple-core-macro" readme = "../README.md" repository = "https://github.com/lukechu10/maple" -version = "0.1.0" +version = "0.1.1" [lib] proc-macro = true diff --git a/maple-core/Cargo.toml b/maple-core/Cargo.toml index 5d93e1d43..dbf5310ca 100644 --- a/maple-core/Cargo.toml +++ b/maple-core/Cargo.toml @@ -7,12 +7,12 @@ license = "MIT" name = "maple-core" readme = "../README.md" repository = "https://github.com/lukechu10/maple" -version = "0.1.0" +version = "0.1.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -maple-core-macro = {path = "../maple-core-macro", version = "0.1.0"} +maple-core-macro = {path = "../maple-core-macro", version = "0.1.1"} wasm-bindgen = "0.2.71" [dependencies.web-sys]