Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump: to 0.4.0-beta-0 #56

Merged
merged 1 commit into from
Dec 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.3.1"
version = "0.4.0-beta.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.3.1" }
hirola-macros = { path = "crates/hirola-macros", version = "0.3.1" }
hirola-dom = { path = "crates/hirola-dom", version = "0.3.1", optional = true }
hirola-ssr = { path = "crates/hirola-ssr", version = "0.3.1", optional = true }
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 }

[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.3.1"
version = "0.4.0-beta.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,14 +1,14 @@
[package]
name = "hirola-dom"
version = "0.3.1"
version = "0.4.0-beta.0"
edition = "2021"

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

[dependencies]
wasm-bindgen = { version = "0.2" }
log = "0.4"
hirola-core = { path = "../hirola-core", version = "0.3.1" }
hirola-core = { path = "../hirola-core", version = "0.4.0-beta.0" }
matchit = { version = "0.7" }
wasm-bindgen-futures = { version = "0.4.39" }
discard = "1"
Expand All @@ -30,5 +30,5 @@ features = [
version = "0.3.66"

[dev-dependencies]
hirola = { path = "../../", version = "0.3.1" }
hirola = { path = "../../", version = "0.4.0-beta.0" }
wasm-bindgen-test = "0.3.39"
6 changes: 3 additions & 3 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.3.1"
version = "0.4.0-beta.0"
edition = "2021"
description = "Form mixins and utilities for hirola"
repository = "https://github.com/geofmureithi/hirola"
Expand All @@ -12,8 +12,8 @@ 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.3.1" }
hirola-dom = { path = "../hirola-dom", version = "0.3.1", default-features = false }
hirola-core = { path = "../hirola-core", version = "0.4.0-beta.0" }
hirola-dom = { path = "../hirola-dom", version = "0.4.0-beta.0", default-features = false }
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1"
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.3.1"
version = "0.4.0-beta.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
6 changes: 3 additions & 3 deletions crates/hirola-ssr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "hirola-ssr"
version = "0.3.1"
version = "0.4.0-beta.0"
edition = "2021"

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

[dependencies]
hirola-core = { path = "../hirola-core", version = "0.3.1" }
hirola-core = { path = "../hirola-core", version = "0.4.0-beta.0" }
html-escape = { version = "0.2.13" }


[dev-dependencies]
hirola = { path = "../../", version = "0.3.1" }
hirola = { path = "../../", version = "0.4.0-beta.0" }
wasm-bindgen-test = "0.3.39"
Loading