Skip to content

Commit

Permalink
Merge pull request #15 from geofmureithi/chore/bump-to-0.3.1
Browse files Browse the repository at this point in the history
bump: Bump up version
  • Loading branch information
geofmureithi authored Aug 31, 2023
2 parents 9f84b2a + a54df4d commit d07e646
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hirola"
version = "0.3.0"
version = "0.3.1"
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,9 +11,9 @@ keywords = ["wasm", "html", "dom", "web"]
edition = "2021"

[dependencies]
hirola-core = { path = "crates/hirola-core", version = "0.3.0" }
hirola-macros = { path = "crates/hirola-macros", version = "0.3.0" }
hirola-form = { path = "crates/hirola-form", version = "0.3.0", optional = true }
hirola-core = { path = "crates/hirola-core", version = "0.3.1" }
hirola-macros = { path = "crates/hirola-macros", version = "0.3.1" }
hirola-form = { path = "crates/hirola-form", version = "0.3.1", optional = true }


[features]
Expand Down
4 changes: 2 additions & 2 deletions 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.0"
version = "0.3.1"
authors = ["Geoffrey Mureithi <[email protected]>"]
edition = "2021"
description = "An html library for building client side webapps"
Expand All @@ -15,7 +15,7 @@ keywords = ["wasm", "html", "dom", "web"]

[dependencies]
html-escape = { version = "0.2.7", optional = true }
hirola-macros = { path = "../hirola-macros", version = "0.3.0" }
hirola-macros = { path = "../hirola-macros", version = "0.3.1" }
wasm-bindgen = { version = "0.2", optional = true }
matchit = { version = "0.7", optional = true }
wasm-bindgen-futures = { optional = true, version = "0.4.29" }
Expand Down
4 changes: 2 additions & 2 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.0"
version = "0.3.1"
edition = "2021"
description = "Form mixins and utilities for hirola"
repository = "https://github.com/geofmureithi/hirola"
Expand All @@ -14,7 +14,7 @@ keywords = ["wasm", "html", "form", "web"]
[dependencies]
hirola-core = { path = "../hirola-core", features = [
"dom",
], version = "0.3.0" }
], version = "0.3.1" }
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
serde = { version = "1.0.80", features = ["derive"] }
serde_json = "1"
Expand Down
2 changes: 1 addition & 1 deletion crates/hirola-kit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hirola-kit"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
documentation = "https://docs.rs/hirola"
readme = "../../README.md"
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.0"
version = "0.3.1"
authors = ["Geoffrey Mureithi <[email protected]>"]
edition = "2021"
description = "Hirola is an un-opinionated web framework that is focused on simplicity and predictability"
Expand Down

0 comments on commit d07e646

Please sign in to comment.