Skip to content

Commit e0efe0d

Browse files
committed
Prepare release 0.3.1
1 parent 60d433f commit e0efe0d

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

CHANGELOG.md

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

3+
## **0.3.1** _(2021-03-16)_
4+
5+
#### Changelog
6+
7+
- #### ⚡️ Features
8+
9+
- More types in `template!` macro. `template!` can now be nested [[@lukechu10], [#45](https://github.com/lukechu10/maple/pull/45)]
10+
- Component lifecycle using `on_cleanup` [[@lukechu10], [#24](https://github.com/lukechu10/maple/pull/24)]
11+
12+
- #### 🛠 Fixes
13+
14+
- Add some badges to `README.md` [[@lukechu10], [#44](https://github.com/lukechu10/maple/pull/44) and [#48](https://github.com/lukechu10/maple/pull/48)]
15+
316
## **0.3.0** _(2021-03-13)_
417

518
#### Changelog

README.md

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

1515
```toml
16-
maple-core = "0.3.0"
16+
maple-core = "0.3.1"
1717
```
1818

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

maple-core-macro/Cargo.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
[package]
22
authors = ["Luke Chu <[email protected]>"]
3+
categories = ["gui", "wasm", "web-programming"]
34
description = "A VDOM-less web library with fine grained reactivity"
45
edition = "2018"
56
homepage = "https://github.com/lukechu10/maple"
7+
keywords = ["wasm", "gui", "reactive"]
68
license = "MIT"
79
name = "maple-core-macro"
810
readme = "../README.md"
911
repository = "https://github.com/lukechu10/maple"
10-
version = "0.3.0"
12+
version = "0.3.1"
1113

1214
[lib]
1315
proc-macro = true

maple-core/Cargo.toml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
[package]
22
authors = ["Luke Chu <[email protected]>"]
3+
categories = ["gui", "wasm", "web-programming"]
34
description = "A VDOM-less web library with fine grained reactivity"
45
edition = "2018"
56
homepage = "https://github.com/lukechu10/maple"
7+
keywords = ["wasm", "gui", "reactive"]
68
license = "MIT"
79
name = "maple-core"
810
readme = "../README.md"
911
repository = "https://github.com/lukechu10/maple"
10-
version = "0.3.0"
12+
version = "0.3.1"
1113

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

1416
[dependencies]
15-
maple-core-macro = {path = "../maple-core-macro", version = "0.3.0"}
17+
maple-core-macro = {path = "../maple-core-macro", version = "0.3.1"}
1618
wasm-bindgen = "0.2.71"
1719

1820
[dependencies.web-sys]

0 commit comments

Comments
 (0)