diff --git a/Cargo.toml b/Cargo.toml index b124792..488e5dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "o2o" -version = "0.5.1" +version = "0.5.2" 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.5.1", path = "o2o-impl", optional = true } -o2o-macros = { version = "0.5.1", path = "o2o-macros", default-features = false, optional = true } +o2o-impl = { version = "0.5.2", path = "o2o-impl", optional = true } +o2o-macros = { version = "0.5.2", path = "o2o-macros", default-features = false, optional = true } [features] default = ["syn1"] diff --git a/README.md b/README.md index 367fed2..8f160ce 100644 --- a/README.md +++ b/README.md @@ -269,7 +269,7 @@ For most projects, just add this to `Cargo.toml`: ``` toml [dependencies] -o2o = "0.5.1" +o2o = "0.5.2" ``` ### `syn >=2.*` @@ -278,7 +278,7 @@ Currently o2o uses `syn >=1.0.3, <2` by default. If you want `syn >=2.*` to be u ``` toml [dependencies] -o2o = { version = "0.5.1", default-features = false, features = "syn2" } +o2o = { version = "0.5.2", default-features = false, features = "syn2" } ``` ### no_std @@ -287,18 +287,18 @@ In `#![no_std]` project, add this to `Cargo.toml`: ``` toml [dependencies] -o2o-macros = "0.5.1" +o2o-macros = "0.5.2" # Following line can be ommited if you don't need o2o to produce o2o::traits::(Try)IntoExisting implementations -o2o = { version = "0.5.1", default-features = false } +o2o = { version = "0.5.2", default-features = false } ``` Or, if you want `no_std` *and* `syn2`: ``` toml [dependencies] -o2o-macros = { version = "0.5.1", default-features = false, features = "syn2" } +o2o-macros = { version = "0.5.2", default-features = false, features = "syn2" } # Following line can be ommited if you don't need o2o to produce o2o::traits::(Try)IntoExisting implementations -o2o = { version = "0.5.1", default-features = false } +o2o = { version = "0.5.2", default-features = false } ``` ## The (not so big) Problem diff --git a/o2o-impl/Cargo.toml b/o2o-impl/Cargo.toml index 97e6016..f244870 100644 --- a/o2o-impl/Cargo.toml +++ b/o2o-impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "o2o-impl" -version = "0.5.1" +version = "0.5.2" edition = "2021" authors = ["Artem Romanenia "] description = "Implementation of 'o2o' crate" diff --git a/o2o-macros/Cargo.toml b/o2o-macros/Cargo.toml index 11b5e65..b5c3626 100644 --- a/o2o-macros/Cargo.toml +++ b/o2o-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "o2o-macros" -version = "0.5.1" +version = "0.5.2" edition = "2021" authors = ["Artem Romanenia "] description = "Macro definitions of 'o2o' crate" @@ -11,7 +11,7 @@ repository = "https://github.com/Artem-Romanenia/o2o" proc-macro = true [dependencies] -o2o-impl = { version = "0.5.1", path = "../o2o-impl" } +o2o-impl = { version = "0.5.2", path = "../o2o-impl" } syn = { package = "syn", version = "1.0.3", optional = true } syn2 = { package = "syn", version = "2.0.0", optional = true } diff --git a/o2o-tests/Cargo.toml b/o2o-tests/Cargo.toml index bda202d..34edca7 100644 --- a/o2o-tests/Cargo.toml +++ b/o2o-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "o2o-tests" -version = "0.5.1" +version = "0.5.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.5.1", default-features = false, path = "../" } +o2o = { version = "0.5.2", default-features = false, path = "../" } anyhow = "1.0.86" [dev-dependencies]