From 9aa4df66200793a9743d5a16c146893c45fcf944 Mon Sep 17 00:00:00 2001 From: Geoffrey Mureithi <95377562+geofmureithi@users.noreply.github.com> Date: Fri, 29 Dec 2023 01:04:15 +0300 Subject: [PATCH] Bump to v0.4.0 (#68) * bump: to v0.4.0 * fix: typo --- Cargo.lock | 12 ++++++------ Cargo.toml | 10 +++++----- crates/hirola-core/Cargo.toml | 2 +- crates/hirola-dom/Cargo.toml | 6 +++--- crates/hirola-form/Cargo.toml | 8 ++++---- crates/hirola-macros/Cargo.toml | 2 +- crates/hirola-ssr/Cargo.toml | 4 ++-- 7 files changed, 22 insertions(+), 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 73a36af..22c7dbf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -866,7 +866,7 @@ checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" [[package]] name = "hirola" -version = "0.4.0-beta.0" +version = "0.4.0" dependencies = [ "document-features", "futures-util", @@ -882,7 +882,7 @@ dependencies = [ [[package]] name = "hirola-core" -version = "0.4.0-beta.0" +version = "0.4.0" dependencies = [ "criterion", "futures-signals", @@ -894,7 +894,7 @@ dependencies = [ [[package]] name = "hirola-dom" -version = "0.4.0-beta.0" +version = "0.4.0" dependencies = [ "discard", "hirola", @@ -911,7 +911,7 @@ dependencies = [ [[package]] name = "hirola-form" -version = "0.4.0-beta.0" +version = "0.4.0" dependencies = [ "hirola-core", "hirola-dom", @@ -945,7 +945,7 @@ dependencies = [ [[package]] name = "hirola-macros" -version = "0.4.0-beta.0" +version = "0.4.0" dependencies = [ "heck", "hirola", @@ -962,7 +962,7 @@ dependencies = [ [[package]] name = "hirola-ssr" -version = "0.4.0-beta.0" +version = "0.4.0" dependencies = [ "hirola", "hirola-core", diff --git a/Cargo.toml b/Cargo.toml index 786c0e0..ffad71a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hirola" -version = "0.4.0-beta.0" +version = "0.4.0" authors = ["Geoffrey Mureithi "] description = "Hirola is an un-opinionated web framework that is focused on simplicity and predictability" repository = "https://github.com/geofmureithi/hirola" @@ -11,10 +11,10 @@ keywords = ["wasm", "html", "dom", "web"] edition = "2021" [dependencies] -hirola-core = { path = "crates/hirola-core", version = "0.4.0-beta.0" } -hirola-macros = { path = "crates/hirola-macros", version = "0.4.0-beta.0" } -hirola-dom = { path = "crates/hirola-dom", version = "0.4.0-beta.0", optional = true } -hirola-ssr = { path = "crates/hirola-ssr", version = "0.4.0-beta.0", optional = true } +hirola-core = { path = "crates/hirola-core", version = "0.4.0" } +hirola-macros = { path = "crates/hirola-macros", version = "0.4.0" } +hirola-dom = { path = "crates/hirola-dom", version = "0.4.0", optional = true } +hirola-ssr = { path = "crates/hirola-ssr", version = "0.4.0", optional = true } [features] default = ["dom"] diff --git a/crates/hirola-core/Cargo.toml b/crates/hirola-core/Cargo.toml index 6209007..c24d966 100644 --- a/crates/hirola-core/Cargo.toml +++ b/crates/hirola-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hirola-core" -version = "0.4.0-beta.0" +version = "0.4.0" authors = ["Geoffrey Mureithi "] edition = "2021" description = "An html library for building client side webapps" diff --git a/crates/hirola-dom/Cargo.toml b/crates/hirola-dom/Cargo.toml index 59b6d2a..d362c42 100644 --- a/crates/hirola-dom/Cargo.toml +++ b/crates/hirola-dom/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hirola-dom" -version = "0.4.0-beta.0" +version = "0.4.0" edition = "2021" description = "Hirola is an un-opinionated web framework that is focused on simplicity and predictability" repository = "https://github.com/geofmureithi/hirola" @@ -14,8 +14,8 @@ keywords = ["wasm", "html", "dom", "web"] [dependencies] wasm-bindgen = { version = "0.2" } log = "0.4" -hirola-core = { path = "../hirola-core", version = "0.4.0-beta.0" } -hirola-macros = { path = "../hirola-macros", version = "0.4.0-beta.0" } +hirola-core = { path = "../hirola-core", version = "0.4.0" } +hirola-macros = { path = "../hirola-macros", version = "0.4.0" } matchit = { version = "0.7" } wasm-bindgen-futures = { version = "0.4.39" } discard = "1" diff --git a/crates/hirola-form/Cargo.toml b/crates/hirola-form/Cargo.toml index 351129e..2094f01 100644 --- a/crates/hirola-form/Cargo.toml +++ b/crates/hirola-form/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hirola-form" -version = "0.4.0-beta.0" +version = "0.4.0" edition = "2021" description = "Form mixins and utilities for hirola" repository = "https://github.com/geofmureithi/hirola" @@ -12,9 +12,9 @@ keywords = ["wasm", "html", "form", "web"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -hirola-core = { path = "../hirola-core", version = "0.4.0-beta.0" } -hirola-macros = { path = "../hirola-macros", version = "0.4.0-beta.0" } -hirola-dom = { path = "../hirola-dom", version = "0.4.0-beta.0", default-features = false } +hirola-core = { path = "../hirola-core", version = "0.4.0" } +hirola-macros = { path = "../hirola-macros", version = "0.4.0" } +hirola-dom = { path = "../hirola-dom", version = "0.4.0", default-features = false } wasm-bindgen = { version = "0.2", features = ["serde-serialize"] } serde = { version = "1.0.193", features = ["derive"] } diff --git a/crates/hirola-macros/Cargo.toml b/crates/hirola-macros/Cargo.toml index 5dfc0ac..95df7dc 100644 --- a/crates/hirola-macros/Cargo.toml +++ b/crates/hirola-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hirola-macros" -version = "0.4.0-beta.0" +version = "0.4.0" authors = ["Geoffrey Mureithi "] edition = "2021" description = "Hirola is an un-opinionated web framework that is focused on simplicity and predictability" diff --git a/crates/hirola-ssr/Cargo.toml b/crates/hirola-ssr/Cargo.toml index 4a4d01b..1c30dfa 100644 --- a/crates/hirola-ssr/Cargo.toml +++ b/crates/hirola-ssr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hirola-ssr" -version = "0.4.0-beta.0" +version = "0.4.0" edition = "2021" description = "Hirola is an un-opinionated web framework that is focused on simplicity and predictability" repository = "https://github.com/geofmureithi/hirola" @@ -12,7 +12,7 @@ keywords = ["wasm", "html", "ssr", "web"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -hirola-core = { path = "../hirola-core", version = "0.4.0-beta.0" } +hirola-core = { path = "../hirola-core", version = "0.4.0" } html-escape = { version = "0.2.13" }