From 4bfd6c50945e6d5d4f4c8e1d675c8f1bc7413faf Mon Sep 17 00:00:00 2001 From: Anthony Dodd Date: Wed, 15 Feb 2023 12:22:19 -0600 Subject: [PATCH] Bump version info to v0.4.0-beta.0 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 15 ++++----------- README.md | 2 +- rustfmt.toml | 2 +- 4 files changed, 14 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 609efe6..fe076ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ Subheadings to categorize changes are `added, changed, deprecated, removed, fixe ## Unreleased +## 0.4.0-beta.0 +The only real change here is that YBC has been updated to Yew 0.20, which included updating only a few components. + +### changed +- Updated to yew 0.20 +- Updated to yew-agent 0.2 +- Updated to yew-router 0.17 + ## 0.3.0-beta.0 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. diff --git a/Cargo.toml b/Cargo.toml index 97839a9..e5e037d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "ybc" -version = "0.3.0-beta.0" +version = "0.4.0-beta.0" description = "A Yew component library based on the Bulma CSS framework." authors = ["Anthony Dodd "] -edition = "2018" +edition = "2021" license = "MIT/Apache-2.0" repository = "https://github.com/thedodd/ybc" readme = "README.md" @@ -11,15 +11,8 @@ categories = ["wasm", "web-programming"] keywords = ["wasm", "web", "bulma", "sass", "yew"] [dependencies] -derive_more = { version = "0.99.17", default-features = false, features = [ - "display", -] } -web-sys = { version = "0.3.61", features = [ - "Element", - "File", - "HtmlCollection", - "HtmlSelectElement", -] } +derive_more = { version = "0.99.17", default-features = false, features = ["display"] } +web-sys = { version = "0.3.61", features = ["Element", "File", "HtmlCollection", "HtmlSelectElement"] } yew = { version = "0.20.0", features = ["csr"] } yew-agent = "0.2.0" yew-router = { version = "0.17.0", optional = true } diff --git a/README.md b/README.md index fb64c54..03e0442 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ First, add this library to your `Cargo.toml` dependencies. ```toml [dependencies] -ybc = "0.2" +ybc = "*" ``` ### add bulma diff --git a/rustfmt.toml b/rustfmt.toml index a2e931b..008e901 100644 --- a/rustfmt.toml +++ b/rustfmt.toml @@ -1,5 +1,5 @@ unstable_features = true -edition = "2018" +edition = "2021" comment_width = 100 fn_args_layout = "Compressed"