Skip to content

Commit

Permalink
Release version 0.32.1
Browse files Browse the repository at this point in the history
  • Loading branch information
photino committed Feb 19, 2025
1 parent ac4cb42 commit 4650f98
Show file tree
Hide file tree
Showing 13 changed files with 49 additions and 49 deletions.
6 changes: 3 additions & 3 deletions crates/zino-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zino-core"
description = "Core types and traits for zino."
version = "0.32.0"
version = "0.32.1"
rust-version = "1.80"
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -107,7 +107,7 @@ rust_decimal = "1.36.0"
serde_qs = "0.13.0"
sha1 = "0.10.6"
sha2 = "0.10.8"
smallvec = "1.13.2"
smallvec = "1.14.0"
tracing = "0.1.41"
url = "2.5.4"

Expand Down Expand Up @@ -228,7 +228,7 @@ features = [
]

[dependencies.uuid]
version = "1.13.1"
version = "1.13.2"
features = [
"fast-rng",
"serde",
Expand Down
8 changes: 4 additions & 4 deletions 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.13.0"
version = "0.13.1"
rust-version = "1.80"
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -30,7 +30,7 @@ dioxus-html = "0.6.3"
dioxus-router = "0.6.3"
image = "0.25.5"
rust_decimal = "1.36.0"
smallvec = "1.13.2"
smallvec = "1.14.0"
tracing = "0.1.41"

[dependencies.chrono]
Expand Down Expand Up @@ -63,7 +63,7 @@ features = [
]

[dependencies.uuid]
version = "1.13.1"
version = "1.13.2"
features = [
"fast-rng",
"serde",
Expand All @@ -73,7 +73,7 @@ features = [

[dependencies.zino-core]
path = "../zino-core"
version = "0.32.0"
version = "0.32.1"
features = ["runtime-tokio"]

[dependencies.zino-storage]
Expand Down
6 changes: 3 additions & 3 deletions crates/zino-http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zino-http"
description = "HTTP requests and responses for zino."
version = "0.4.0"
version = "0.4.1"
rust-version = "1.80"
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -54,7 +54,7 @@ percent-encoding = "2.3.1"
regex = "1.11.1"
ryu = "1.0.19"
serde_qs = "0.13.0"
smallvec = "1.13.2"
smallvec = "1.14.0"
tracing = "0.1.41"
url = "2.5.4"

Expand Down Expand Up @@ -139,7 +139,7 @@ version = "0.4.0"

[dependencies.zino-core]
path = "../zino-core"
version = "0.32.0"
version = "0.32.1"
features = ["http-client"]

[dependencies.zino-storage]
Expand Down
8 changes: 4 additions & 4 deletions crates/zino-model/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zino-model"
description = "Domain models for zino."
version = "0.30.0"
version = "0.30.1"
rust-version = "1.80"
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -54,13 +54,13 @@ features = ["jwt"]

[dependencies.zino-core]
path = "../zino-core"
version = "0.32.0"
version = "0.32.1"
features = ["validator-email"]

[dependencies.zino-derive]
path = "../zino-derive"
version = "0.30.0"
version = "0.30.1"

[dependencies.zino-orm]
path = "../zino-orm"
version = "0.4.0"
version = "0.4.1"
6 changes: 3 additions & 3 deletions crates/zino-orm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zino-orm"
description = "ORM for zino."
version = "0.4.0"
version = "0.4.1"
rust-version = "1.80"
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -32,7 +32,7 @@ http = "1.2.0"
futures = "0.3.31"
regex = "1.11.1"
serde_json = "1.0.138"
smallvec = "1.13.2"
smallvec = "1.14.0"
tracing = "0.1.41"
url = "2.5.4"

Expand All @@ -57,7 +57,7 @@ default-features = false

[dependencies.zino-core]
path = "../zino-core"
version = "0.32.0"
version = "0.32.1"

[dependencies.zino-openapi]
path = "../zino-openapi"
Expand Down
10 changes: 5 additions & 5 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.32.0"
version = "0.32.1"
rust-version = "1.80"
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -68,16 +68,16 @@ optional = true

[dependencies.zino-core]
path = "../zino-core"
version = "0.32.0"
version = "0.32.1"

[dependencies.zino-dioxus]
path = "../zino-dioxus"
version = "0.13.0"
version = "0.13.1"
optional = true

[dependencies.zino-http]
path = "../zino-http"
version = "0.4.0"
version = "0.4.1"
optional = true

[dependencies.zino-ntex]
Expand All @@ -92,7 +92,7 @@ optional = true

[dependencies.zino-orm]
path = "../zino-orm"
version = "0.4.0"
version = "0.4.1"
optional = true

[dependencies.zino-storage]
Expand Down
12 changes: 6 additions & 6 deletions examples/actix-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "actix-app"
description = "An example for actix-web integration."
version = "0.13.0"
version = "0.13.1"
rust-version = "1.80"
edition = "2021"
publish = false
Expand All @@ -19,7 +19,7 @@ features = ["derive"]

[dependencies.zino]
path = "../../crates/zino"
version = "0.32.0"
version = "0.32.1"
features = [
"actix",
"cookie",
Expand All @@ -32,18 +32,18 @@ features = [

[dependencies.zino-core]
path = "../../crates/zino-core"
version = "0.32.0"
version = "0.32.1"
features = ["env-filter"]

[dependencies.zino-derive]
path = "../../crates/zino-derive"
version = "0.30.0"
version = "0.30.1"

[dependencies.zino-model]
path = "../../crates/zino-model"
version = "0.30.0"
version = "0.30.1"

[dependencies.zino-orm]
path = "../../crates/zino-orm"
version = "0.4.0"
version = "0.4.1"
features = ["orm-postgres"]
4 changes: 2 additions & 2 deletions examples/amis-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "amis-app"
description = "An example for amis UI generator."
version = "0.5.0"
version = "0.5.1"
rust-version = "1.80"
edition = "2021"
publish = false
Expand All @@ -16,4 +16,4 @@ version = "0.4.0"

[dependencies.zino-core]
path = "../../crates/zino-core"
version = "0.32.0"
version = "0.32.1"
12 changes: 6 additions & 6 deletions examples/axum-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "axum-app"
description = "An example for axum integration."
version = "0.20.0"
version = "0.20.1"
rust-version = "1.80"
edition = "2021"
publish = false
Expand All @@ -19,7 +19,7 @@ features = ["derive"]

[dependencies.zino]
path = "../../crates/zino"
version = "0.32.0"
version = "0.32.1"
features = [
"axum",
"cookie",
Expand All @@ -31,18 +31,18 @@ features = [

[dependencies.zino-core]
path = "../../crates/zino-core"
version = "0.32.0"
version = "0.32.1"
features = ["env-filter", "validator-email"]

[dependencies.zino-derive]
path = "../../crates/zino-derive"
version = "0.30.0"
version = "0.30.1"

[dependencies.zino-model]
path = "../../crates/zino-model"
version = "0.30.0"
version = "0.30.1"

[dependencies.zino-orm]
path = "../../crates/zino-orm"
version = "0.4.0"
version = "0.4.1"
features = ["orm-mysql"]
2 changes: 1 addition & 1 deletion examples/axum-app/src/schedule/job.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::model::User;
use zino::prelude::*;
use zino_model::User;

pub fn every_15s(ctx: &mut JobContext) {
if let Some(job_data) = ctx.get_data_mut::<Map>() {
Expand Down
8 changes: 4 additions & 4 deletions examples/dioxus-desktop/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dioxus-desktop"
description = "An example for Dioxus desktop integration."
version = "0.10.0"
version = "0.10.1"
rust-version = "1.80"
edition = "2021"
publish = false
Expand All @@ -22,14 +22,14 @@ features = [

[dependencies.zino]
path = "../../crates/zino"
version = "0.32.0"
version = "0.32.1"
features = ["dioxus-desktop"]

[dependencies.zino-core]
path = "../../crates/zino-core"
version = "0.32.0"
version = "0.32.1"
features = ["env-filter", "http-client", "tls-native"]

[dependencies.zino-dioxus]
path = "../../crates/zino-dioxus"
version = "0.13.0"
version = "0.13.1"
4 changes: 2 additions & 2 deletions examples/minimal-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "minimal-app"
description = "A minimal example to run a server."
version = "0.9.0"
version = "0.9.1"
rust-version = "1.80"
edition = "2021"
publish = false

[dependencies.zino]
path = "../../crates/zino"
version = "0.32.0"
version = "0.32.1"
features = ["axum"]

12 changes: 6 additions & 6 deletions examples/ntex-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ntex-app"
description = "An example for ntex integration."
version = "0.7.0"
version = "0.7.1"
rust-version = "1.80"
edition = "2021"
publish = false
Expand All @@ -19,7 +19,7 @@ features = ["derive"]

[dependencies.zino]
path = "../../crates/zino"
version = "0.32.0"
version = "0.32.1"
features = [
"cookie",
"i18n",
Expand All @@ -31,18 +31,18 @@ features = [

[dependencies.zino-core]
path = "../../crates/zino-core"
version = "0.32.0"
version = "0.32.1"
features = ["env-filter"]

[dependencies.zino-derive]
path = "../../crates/zino-derive"
version = "0.30.0"
version = "0.30.1"

[dependencies.zino-model]
path = "../../crates/zino-model"
version = "0.30.0"
version = "0.30.1"

[dependencies.zino-orm]
path = "../../crates/zino-orm"
version = "0.4.0"
version = "0.4.1"
features = ["orm-postgres"]

0 comments on commit 4650f98

Please sign in to comment.