Skip to content

Commit

Permalink
Bump to v0.4.0 (#68)
Browse files Browse the repository at this point in the history
* bump: to v0.4.0

* fix: typo
  • Loading branch information
geofmureithi committed Dec 28, 2023
1 parent 65ec268 commit 9aa4df6
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 22 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hirola"
version = "0.4.0-beta.0"
version = "0.4.0"
authors = ["Geoffrey Mureithi <[email protected]>"]
description = "Hirola is an un-opinionated web framework that is focused on simplicity and predictability"
repository = "https://github.com/geofmureithi/hirola"
Expand All @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion crates/hirola-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hirola-core"
version = "0.4.0-beta.0"
version = "0.4.0"
authors = ["Geoffrey Mureithi <[email protected]>"]
edition = "2021"
description = "An html library for building client side webapps"
Expand Down
6 changes: 3 additions & 3 deletions crates/hirola-dom/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions crates/hirola-form/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"] }

Expand Down
2 changes: 1 addition & 1 deletion crates/hirola-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hirola-macros"
version = "0.4.0-beta.0"
version = "0.4.0"
authors = ["Geoffrey Mureithi <[email protected]>"]
edition = "2021"
description = "Hirola is an un-opinionated web framework that is focused on simplicity and predictability"
Expand Down
4 changes: 2 additions & 2 deletions crates/hirola-ssr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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" }


Expand Down

0 comments on commit 9aa4df6

Please sign in to comment.