From 1b109eb58e3063286541322639a30f36d39303f8 Mon Sep 17 00:00:00 2001 From: Artem Romanenia Date: Tue, 10 Sep 2024 07:34:13 +0300 Subject: [PATCH] v0.4.10 --- Cargo.toml | 6 +++--- o2o-impl/Cargo.toml | 2 +- o2o-macros/Cargo.toml | 4 ++-- o2o-tests/Cargo.toml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 50bc1cd..acefd47 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "o2o" -version = "0.4.9" +version = "0.4.10" edition = "2021" authors = ["Artem Romanenia "] categories = ["rust-patterns"] @@ -10,8 +10,8 @@ license = "MIT OR Apache-2.0" repository = "https://github.com/Artem-Romanenia/o2o" [dependencies] -o2o-impl = { version = "0.4.9", path = "o2o-impl", optional = true } -o2o-macros = { version = "0.4.9", path = "o2o-macros", optional = true } +o2o-impl = { version = "0.4.10", path = "o2o-impl", optional = true } +o2o-macros = { version = "0.4.10", path = "o2o-macros", optional = true } [features] default = ["macro"] diff --git a/o2o-impl/Cargo.toml b/o2o-impl/Cargo.toml index 35f896c..6812fa0 100644 --- a/o2o-impl/Cargo.toml +++ b/o2o-impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "o2o-impl" -version = "0.4.9" +version = "0.4.10" edition = "2021" authors = ["Artem Romanenia "] description = "Implementation of 'o2o' crate" diff --git a/o2o-macros/Cargo.toml b/o2o-macros/Cargo.toml index d727fbd..896d665 100644 --- a/o2o-macros/Cargo.toml +++ b/o2o-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "o2o-macros" -version = "0.4.9" +version = "0.4.10" edition = "2021" authors = ["Artem Romanenia "] description = "Macro definitions of 'o2o' crate" @@ -11,5 +11,5 @@ repository = "https://github.com/Artem-Romanenia/o2o" proc-macro = true [dependencies] -o2o-impl = { version = "0.4.9", path = "../o2o-impl" } +o2o-impl = { version = "0.4.10", path = "../o2o-impl" } syn = "1.0.3" diff --git a/o2o-tests/Cargo.toml b/o2o-tests/Cargo.toml index 2cba4af..0f08bf3 100644 --- a/o2o-tests/Cargo.toml +++ b/o2o-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "o2o-tests" -version = "0.4.9" +version = "0.4.10" edition = "2021" authors = ["Artem Romanenia "] description = "Tests for 'o2o' crate" @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" repository = "https://github.com/Artem-Romanenia/o2o" [dependencies] -o2o = { version = "0.4.9", path = "../" } +o2o = { version = "0.4.10", path = "../" } anyhow = "1.0.86" [dev-dependencies]