From aa570888174d7041d0370e6f1f159aa387293c05 Mon Sep 17 00:00:00 2001 From: Artem Romanenia Date: Mon, 5 Aug 2024 13:04:11 +0300 Subject: [PATCH] v0.4.9-alpha.2 --- 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 964c420..385d2e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "o2o" -version = "0.4.9-alpha.1" +version = "0.4.9-alpha.2" 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-alpha.1", path = "o2o-impl", optional = true } -o2o-macros = { version = "0.4.9-alpha.1", path = "o2o-macros", optional = true } +o2o-impl = { version = "0.4.9-alpha.2", path = "o2o-impl", optional = true } +o2o-macros = { version = "0.4.9-alpha.2", path = "o2o-macros", optional = true } [features] default = ["macro"] diff --git a/o2o-impl/Cargo.toml b/o2o-impl/Cargo.toml index 34eabdf..5d3ad2d 100644 --- a/o2o-impl/Cargo.toml +++ b/o2o-impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "o2o-impl" -version = "0.4.9-alpha.1" +version = "0.4.9-alpha.2" edition = "2021" authors = ["Artem Romanenia "] description = "Implementation of 'o2o' crate" diff --git a/o2o-macros/Cargo.toml b/o2o-macros/Cargo.toml index 8445467..30e6c9c 100644 --- a/o2o-macros/Cargo.toml +++ b/o2o-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "o2o-macros" -version = "0.4.9-alpha.1" +version = "0.4.9-alpha.2" 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-alpha.1", path = "../o2o-impl" } +o2o-impl = { version = "0.4.9-alpha.2", path = "../o2o-impl" } syn = "1.0.3" diff --git a/o2o-tests/Cargo.toml b/o2o-tests/Cargo.toml index af3e76d..cd0e058 100644 --- a/o2o-tests/Cargo.toml +++ b/o2o-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "o2o-tests" -version = "0.4.9-alpha.1" +version = "0.4.9-alpha.2" 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-alpha.1", path = "../" } +o2o = { version = "0.4.9-alpha.2", path = "../" } anyhow = "1.0.86" [dev-dependencies]