File tree 4 files changed +23
-5
lines changed
4 files changed +23
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## ✨ ** 0.4.1** _ (2021-03-31)_
4
+
5
+ #### Changelog
6
+
7
+ - #### 🛠 Fixes
8
+
9
+ - Fix ` Keyed ` iteration (swapping and inserting not at the end) [[ @lukechu10 ] , [ #73 ] ( https://github.com/lukechu10/maple/pull/73 )]
10
+
11
+ - #### 📃 Documentation Fixes
12
+
13
+ - Fix typo in ` README.md ` [[ @iwburns ] , [ #64 ] ( https://github.com/lukechu10/maple/pull/64 )]]
14
+ - Add discord server link to issue template [[ @lukechu10 ] , [ #68 ] ( https://github.com/lukechu10/maple/pull/68 )]
15
+
16
+ - #### 🎁 Example Fixes
17
+
18
+ - Fix filter links in TodoMVC example [[ @lukechu10 ] , [ #65 ] ( https://github.com/lukechu10/maple/pull/65 )]
19
+
3
20
## ✨ ** 0.4.0** _ (2021-03-25)_
4
21
5
22
#### Changelog
100
117
- Added ` template! ` macro.
101
118
- Added reactivity primitives.
102
119
103
- [ @Kestrer ] : https://github.com/Kestrer
120
+ [ @iwburns ] : https://github.com/iwburns
121
+ [ @kestrer ] : https://github.com/Kestrer
104
122
[ @lukechu10 ] : https://github.com/lukechu10
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ The recommended build tool is [Trunk](https://trunkrs.dev/).
13
13
Start by adding ` maple-core ` to your ` Cargo.toml ` :
14
14
15
15
``` toml
16
- maple-core = " 0.4.0 "
16
+ maple-core = " 0.4.1 "
17
17
```
18
18
19
19
Add the following to your ` src/main.rs ` file:
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ license = "MIT"
9
9
name = " maple-core-macro"
10
10
readme = " ../README.md"
11
11
repository = " https://github.com/lukechu10/maple"
12
- version = " 0.4.0 "
12
+ version = " 0.4.1 "
13
13
14
14
[lib ]
15
15
proc-macro = true
Original file line number Diff line number Diff line change @@ -9,12 +9,12 @@ license = "MIT"
9
9
name = " maple-core"
10
10
readme = " ../README.md"
11
11
repository = " https://github.com/lukechu10/maple"
12
- version = " 0.4.0 "
12
+ version = " 0.4.1 "
13
13
14
14
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
15
15
16
16
[dependencies ]
17
- maple-core-macro = {path = " ../maple-core-macro" , version = " 0.4.0 " }
17
+ maple-core-macro = {path = " ../maple-core-macro" , version = " 0.4.1 " }
18
18
serde = {version = " 1.0" , optional = true }
19
19
wasm-bindgen = " 0.2.72"
20
20
You can’t perform that action at this time.
0 commit comments