Skip to content

Commit

Permalink
Bump up to 0.2.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
geofmureithi committed Sep 20, 2022
1 parent e9e38b6 commit b0719a8
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 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.2.0-alpha.1"
version = "0.2.0-beta.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.2.0-alpha.1" }
hirola-macros = { path = "crates/hirola-macros", version = "0.2.0-alpha.1" }
hirola-form = { path = "crates/hirola-form", version = "0.2.0-alpha.1", optional = true }
hirola-core = { path = "crates/hirola-core", version = "0.2.0-beta.1" }
hirola-macros = { path = "crates/hirola-macros", version = "0.2.0-beta.1" }
hirola-form = { path = "crates/hirola-form", version = "0.2.0-beta.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.2.0-alpha.1"
version = "0.2.0-beta.1"
authors = ["Geoffrey Mureithi <[email protected]>"]
edition = "2021"
description = "An html library for building client side webapps"
Expand All @@ -18,7 +18,7 @@ chrono = { version = "0.4", features = ["wasmbind"] }
anyhow = "1.0"
thiserror = "1.0"
html-escape = { version = "0.2.7", optional = true }
hirola-macros = { path = "../hirola-macros", version = "0.2.0-alpha.1" }
hirola-macros = { path = "../hirola-macros", version = "0.2.0-beta.1" }
ref-cast = "1.0"
serde = { version = "1.0", optional = true }
wasm-bindgen = { version = "0.2", optional = true }
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.2.0-alpha.1"
version = "0.2.0-beta.1"
edition = "2021"
description = "Form mixins and utilities for hirola"
repository = "https://github.com/geofmureithi/hirola"
Expand All @@ -12,7 +12,7 @@ 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.2.0-alpha.1", features=["serde"] }
hirola-core = { path = "../hirola-core", version = "0.2.0-beta.1", features=["serde"] }
wasm-bindgen = {version = "0.2", features= ["serde-serialize"]}
validator = "0.10"
validator_derive = "0.10"
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.2.0-alpha.1"
version = "0.2.0-beta.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 b0719a8

Please sign in to comment.