Skip to content

Commit ffab9c3

Browse files
authored
Release 0.4.1 (#74)
1 parent d96c571 commit ffab9c3

File tree

4 files changed

+23
-5
lines changed

4 files changed

+23
-5
lines changed

CHANGELOG.md

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

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+
320
## **0.4.0** _(2021-03-25)_
421

522
#### Changelog
@@ -100,5 +117,6 @@
100117
- Added `template!` macro.
101118
- Added reactivity primitives.
102119

103-
[@Kestrer]: https://github.com/Kestrer
120+
[@iwburns]: https://github.com/iwburns
121+
[@kestrer]: https://github.com/Kestrer
104122
[@lukechu10]: https://github.com/lukechu10

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.4.0"
16+
maple-core = "0.4.1"
1717
```
1818

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

maple-core-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
name = "maple-core-macro"
1010
readme = "../README.md"
1111
repository = "https://github.com/lukechu10/maple"
12-
version = "0.4.0"
12+
version = "0.4.1"
1313

1414
[lib]
1515
proc-macro = true

maple-core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ license = "MIT"
99
name = "maple-core"
1010
readme = "../README.md"
1111
repository = "https://github.com/lukechu10/maple"
12-
version = "0.4.0"
12+
version = "0.4.1"
1313

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

1616
[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"}
1818
serde = {version = "1.0", optional = true}
1919
wasm-bindgen = "0.2.72"
2020

0 commit comments

Comments
 (0)