Skip to content

Commit

Permalink
v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lukechu10 committed Mar 7, 2021
1 parent 6601484 commit 437a83e
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
19 changes: 15 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion maple-core-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions maple-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 437a83e

Please sign in to comment.