diff --git a/Cargo.toml b/Cargo.toml index f27da65..1c5119a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "o2o" -version = "0.4.11" +version = "0.5.0" edition = "2021" authors = ["Artem Romanenia "] categories = ["rust-patterns", "no-std", "development-tools"] @@ -10,8 +10,8 @@ license = "MIT OR Apache-2.0" repository = "https://github.com/Artem-Romanenia/o2o" [dependencies] -o2o-impl = { version = "0.4.11", path = "o2o-impl", optional = true } -o2o-macros = { version = "0.4.11", path = "o2o-macros", optional = true } +o2o-impl = { version = "0.5.0", path = "o2o-impl", optional = true } +o2o-macros = { version = "0.5.0", path = "o2o-macros", optional = true } [features] default = ["macro"] diff --git a/o2o-impl/Cargo.toml b/o2o-impl/Cargo.toml index 0b11076..455b7e2 100644 --- a/o2o-impl/Cargo.toml +++ b/o2o-impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "o2o-impl" -version = "0.4.11" +version = "0.5.0" edition = "2021" authors = ["Artem Romanenia "] description = "Implementation of 'o2o' crate" diff --git a/o2o-macros/Cargo.toml b/o2o-macros/Cargo.toml index 0169aec..5f58cc6 100644 --- a/o2o-macros/Cargo.toml +++ b/o2o-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "o2o-macros" -version = "0.4.11" +version = "0.5.0" 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.11", path = "../o2o-impl" } +o2o-impl = { version = "0.5.0", path = "../o2o-impl" } syn = "1.0.3" diff --git a/o2o-tests/Cargo.toml b/o2o-tests/Cargo.toml index 0eca967..2f8ff6f 100644 --- a/o2o-tests/Cargo.toml +++ b/o2o-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "o2o-tests" -version = "0.4.11" +version = "0.5.0" 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.11", path = "../" } +o2o = { version = "0.5.0", path = "../" } anyhow = "1.0.86" [dev-dependencies]