Skip to content

Commit 4bfd6c5

Browse files
committed
Bump version info to v0.4.0-beta.0
1 parent 56a04bf commit 4bfd6c5

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ Subheadings to categorize changes are `added, changed, deprecated, removed, fixe
66

77
## Unreleased
88

9+
## 0.4.0-beta.0
10+
The only real change here is that YBC has been updated to Yew 0.20, which included updating only a few components.
11+
12+
### changed
13+
- Updated to yew 0.20
14+
- Updated to yew-agent 0.2
15+
- Updated to yew-router 0.17
16+
917
## 0.3.0-beta.0
1018
The only real change here is that YBC has been updated to Yew 0.19, which included updating basically all components. Huge shoutout to @Follpvosten for all of her work on making this happen.
1119

Cargo.toml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,18 @@
11
[package]
22
name = "ybc"
3-
version = "0.3.0-beta.0"
3+
version = "0.4.0-beta.0"
44
description = "A Yew component library based on the Bulma CSS framework."
55
authors = ["Anthony Dodd <[email protected]>"]
6-
edition = "2018"
6+
edition = "2021"
77
license = "MIT/Apache-2.0"
88
repository = "https://github.com/thedodd/ybc"
99
readme = "README.md"
1010
categories = ["wasm", "web-programming"]
1111
keywords = ["wasm", "web", "bulma", "sass", "yew"]
1212

1313
[dependencies]
14-
derive_more = { version = "0.99.17", default-features = false, features = [
15-
"display",
16-
] }
17-
web-sys = { version = "0.3.61", features = [
18-
"Element",
19-
"File",
20-
"HtmlCollection",
21-
"HtmlSelectElement",
22-
] }
14+
derive_more = { version = "0.99.17", default-features = false, features = ["display"] }
15+
web-sys = { version = "0.3.61", features = ["Element", "File", "HtmlCollection", "HtmlSelectElement"] }
2316
yew = { version = "0.20.0", features = ["csr"] }
2417
yew-agent = "0.2.0"
2518
yew-router = { version = "0.17.0", optional = true }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ First, add this library to your `Cargo.toml` dependencies.
5656

5757
```toml
5858
[dependencies]
59-
ybc = "0.2"
59+
ybc = "*"
6060
```
6161

6262
### add bulma

rustfmt.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
unstable_features = true
2-
edition = "2018"
2+
edition = "2021"
33

44
comment_width = 100
55
fn_args_layout = "Compressed"

0 commit comments

Comments
 (0)