Skip to content

Commit

Permalink
Release version 0.17.2
Browse files Browse the repository at this point in the history
  • Loading branch information
photino committed Dec 17, 2023
1 parent 4be2be7 commit 6aa7c03
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 19 deletions.
8 changes: 4 additions & 4 deletions examples/actix-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ features = ["derive"]

[dependencies.zino]
path = "../../zino"
version = "0.16.1"
version = "0.16.2"
features = ["actix"]

[dependencies.zino-core]
path = "../../zino-core"
version = "0.17.1"
version = "0.17.2"
features = ["orm-postgres", "view-minijinja"]

[dependencies.zino-derive]
path = "../../zino-derive"
version = "0.14.1"
version = "0.14.2"

[dependencies.zino-model]
path = "../../zino-model"
version = "0.14.1"
version = "0.14.2"
8 changes: 4 additions & 4 deletions examples/axum-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ features = ["derive"]

[dependencies.zino]
path = "../../zino"
version = "0.16.1"
version = "0.16.2"
features = ["axum"]

[dependencies.zino-core]
path = "../../zino-core"
version = "0.17.1"
version = "0.17.2"
features = [
"crypto-sm",
"orm-mysql",
Expand All @@ -32,8 +32,8 @@ features = [

[dependencies.zino-derive]
path = "../../zino-derive"
version = "0.14.1"
version = "0.14.2"

[dependencies.zino-model]
path = "../../zino-model"
version = "0.14.1"
version = "0.14.2"
6 changes: 3 additions & 3 deletions examples/dioxus-desktop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@ features = ["derive"]

[dependencies.zino]
path = "../../zino"
version = "0.16.1"
version = "0.16.2"
features = ["dioxus-desktop"]

[dependencies.zino-core]
path = "../../zino-core"
version = "0.17.1"
version = "0.17.2"
features = ["orm-sqlite"]

[dependencies.zino-model]
path = "../../zino-model"
version = "0.14.1"
version = "0.14.2"

[dependencies.zino-dioxus]
path = "../../zino-dioxus"
Expand Down
2 changes: 1 addition & 1 deletion 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.17.1"
version = "0.17.2"
rust-version = "1.73"
edition = "2021"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions zino-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zino-derive"
description = "Derived traits for zino."
version = "0.14.1"
version = "0.14.2"
rust-version = "1.73"
edition = "2021"
license = "MIT"
Expand All @@ -21,5 +21,5 @@ syn = "2.0.41"

[dependencies.zino-core]
path = "../zino-core"
version = "0.17.1"
version = "0.17.2"
features = ["orm"]
6 changes: 3 additions & 3 deletions 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.14.1"
version = "0.14.2"
rust-version = "1.73"
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -43,7 +43,7 @@ features = ["derive"]

[dependencies.zino-core]
path = "../zino-core"
version = "0.17.1"
version = "0.17.2"
features = [
"orm",
"validator-email",
Expand All @@ -52,4 +52,4 @@ features = [

[dependencies.zino-derive]
path = "../zino-derive"
version = "0.14.1"
version = "0.14.2"
4 changes: 2 additions & 2 deletions 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.16.1"
version = "0.16.2"
rust-version = "1.73"
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -175,4 +175,4 @@ optional = true

[dependencies.zino-core]
path = "../zino-core"
version = "0.17.1"
version = "0.17.2"

0 comments on commit 6aa7c03

Please sign in to comment.