Skip to content

Commit 2ed15f3

Browse files
committed
v0.2.0
1 parent ef0c6b7 commit 2ed15f3

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## **0.2.0** _(2021-03-07)_
4+
5+
- #### ⚡️ Features
6+
7+
- Components! In `maple` they are simply plain old functions that take their props via their parameters [[#9](https://github.com/lukechu10/maple/pull/9)]
8+
- Event listeners now have access to the `Event` object [[#16](https://github.com/lukechu10/maple/pull/16)]
9+
10+
- #### 🛠 Changes
11+
12+
- The `template!` macro now returns a `TemplateResult` instead of raw DOM nodes for increased type safety [[#10](https://github.com/lukechu10/maple/pull/10)]
13+
314
## **0.1.1** _(2021-03-07)_
415

516
#### Changelog

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The recommended build tool is [Trunk](https://trunkrs.dev/).
88
Start by adding `maple-core` to your `Cargo.toml`:
99

1010
```toml
11-
maple-core = "0.1.1"
11+
maple-core = "0.2.0"
1212
```
1313

1414
Add the following to your `src/main.rs` file:

maple-core-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT"
77
name = "maple-core-macro"
88
readme = "../README.md"
99
repository = "https://github.com/lukechu10/maple"
10-
version = "0.1.1"
10+
version = "0.2.0"
1111

1212
[lib]
1313
proc-macro = true

maple-core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ license = "MIT"
77
name = "maple-core"
88
readme = "../README.md"
99
repository = "https://github.com/lukechu10/maple"
10-
version = "0.1.1"
10+
version = "0.2.0"
1111

1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies]
15-
maple-core-macro = {path = "../maple-core-macro", version = "0.1.1"}
15+
maple-core-macro = {path = "../maple-core-macro", version = "0.2.0"}
1616
wasm-bindgen = "0.2.71"
1717

1818
[dependencies.web-sys]

0 commit comments

Comments
 (0)