Skip to content

Commit

Permalink
Release version 0.31.2
Browse files Browse the repository at this point in the history
  • Loading branch information
photino committed Jan 17, 2025
1 parent 177493e commit 0ea452b
Show file tree
Hide file tree
Showing 14 changed files with 24 additions and 24 deletions.
4 changes: 2 additions & 2 deletions crates/zino-actix/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zino-actix"
description = "Integrations with actix-web for zino."
version = "0.5.1"
version = "0.5.2"
rust-version = "1.80"
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -31,7 +31,7 @@ version = "0.7.15"
features = ["opentelemetry_0_27", "uuid_v7"]

[dependencies.utoipa-rapidoc]
version = "5.0.1"
version = "6.0.0"
features = ["actix-web"]

[dependencies.zino-core]
Expand Down
2 changes: 1 addition & 1 deletion crates/zino-amis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zino-amis"
description = "UI generator for amis."
version = "0.3.1"
version = "0.3.2"
rust-version = "1.80"
edition = "2021"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions crates/zino-axum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zino-axum"
description = "Integrations with axum for zino."
version = "0.5.1"
version = "0.5.2"
rust-version = "1.80"
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -57,7 +57,7 @@ features = [
]

[dependencies.utoipa-rapidoc]
version = "5.0.1"
version = "6.0.0"
features = ["axum"]

[dependencies.zino-core]
Expand Down
4 changes: 2 additions & 2 deletions crates/zino-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zino-cli"
description = "CLI tools for zino."
version = "0.6.0"
version = "0.6.1"
rust-version = "1.80"
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -60,7 +60,7 @@ features = ["net"]

[dependencies.zino]
path = "../zino"
version = "0.31.0"
version = "0.31.2"
features = ["axum"]

[dependencies.zino-core]
Expand Down
2 changes: 1 addition & 1 deletion crates/zino-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ ahash = "0.8.11"
apache-avro = "0.17.0"
base64 = "0.22.1"
cfg-if = "1.0"
cron = "0.14.0"
cron = "0.15.0"
csv = "1.3.1"
dirs = "6.0.0"
faster-hex = "0.10.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/zino-dioxus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zino-dioxus"
description = "Dioxus components for zino."
version = "0.12.1"
version = "0.12.2"
rust-version = "1.80"
edition = "2021"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion crates/zino-ntex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zino-ntex"
description = "Integrations with ntex for zino."
version = "0.5.1"
version = "0.5.2"
rust-version = "1.80"
edition = "2021"
license = "MIT"
Expand Down
14 changes: 7 additions & 7 deletions crates/zino/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zino"
description = "Next-generation framework for composable applications in Rust."
version = "0.31.1"
version = "0.31.2"
rust-version = "1.80"
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -53,17 +53,17 @@ serde_json = "1.0.135"

[dependencies.zino-actix]
path = "../zino-actix"
version = "0.5.1"
version = "0.5.2"
optional = true

[dependencies.zino-auth]
path = "../zino-auth"
version = "0.3.1"
version = "0.3.2"
optional = true

[dependencies.zino-axum]
path = "../zino-axum"
version = "0.5.1"
version = "0.5.2"
optional = true

[dependencies.zino-core]
Expand All @@ -72,17 +72,17 @@ version = "0.31.2"

[dependencies.zino-dioxus]
path = "../zino-dioxus"
version = "0.12.1"
version = "0.12.2"
optional = true

[dependencies.zino-http]
path = "../zino-http"
version = "0.3.1"
version = "0.3.2"
optional = true

[dependencies.zino-ntex]
path = "../zino-ntex"
version = "0.5.1"
version = "0.5.2"
optional = true

[dependencies.zino-openapi]
Expand Down
2 changes: 1 addition & 1 deletion examples/actix-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ features = ["derive"]

[dependencies.zino]
path = "../../crates/zino"
version = "0.31.1"
version = "0.31.2"
features = [
"actix",
"cookie",
Expand Down
2 changes: 1 addition & 1 deletion examples/amis-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ features = ["macros"]

[dependencies.zino-amis]
path = "../../crates/zino-amis"
version = "0.3.1"
version = "0.3.2"

[dependencies.zino-core]
path = "../../crates/zino-core"
Expand Down
2 changes: 1 addition & 1 deletion examples/axum-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ features = ["derive"]

[dependencies.zino]
path = "../../crates/zino"
version = "0.31.1"
version = "0.31.2"
features = [
"axum",
"cookie",
Expand Down
4 changes: 2 additions & 2 deletions examples/dioxus-desktop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ features = [

[dependencies.zino]
path = "../../crates/zino"
version = "0.31.1"
version = "0.31.2"
features = ["dioxus-desktop"]

[dependencies.zino-core]
Expand All @@ -32,4 +32,4 @@ features = ["env-filter", "http-client", "tls-native"]

[dependencies.zino-dioxus]
path = "../../crates/zino-dioxus"
version = "0.12.1"
version = "0.12.2"
2 changes: 1 addition & 1 deletion examples/minimal-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ publish = false

[dependencies.zino]
path = "../../crates/zino"
version = "0.31.1"
version = "0.31.2"
features = ["axum"]

2 changes: 1 addition & 1 deletion examples/ntex-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ features = ["derive"]

[dependencies.zino]
path = "../../crates/zino"
version = "0.31.1"
version = "0.31.2"
features = [
"cookie",
"i18n",
Expand Down

0 comments on commit 0ea452b

Please sign in to comment.