diff --git a/canyon_connection/Cargo.toml b/canyon_connection/Cargo.toml index 5af86ca7..2db6bd2c 100644 --- a/canyon_connection/Cargo.toml +++ b/canyon_connection/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "canyon_connection" -version = "0.1.2" +version = "0.2.0" edition = "2021" documentation = "https://zerodaycode.github.io/canyon-book/" homepage = "https://github.com/zerodaycode/Canyon-SQL" diff --git a/canyon_crud/Cargo.toml b/canyon_crud/Cargo.toml index 6b25867d..4c30408f 100644 --- a/canyon_crud/Cargo.toml +++ b/canyon_crud/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "canyon_crud" -version = "0.1.2" +version = "0.2.0" edition = "2021" documentation = "https://zerodaycode.github.io/canyon-book/" homepage = "https://github.com/zerodaycode/Canyon-SQL" @@ -12,4 +12,4 @@ description = "A Rust ORM and QueryBuilder" chrono = { version = "0.4", features = ["serde"] } async-trait = { version = "0.1.50" } -canyon_connection = { version = "0.1.2", path = "../canyon_connection" } +canyon_connection = { version = "0.2.0", path = "../canyon_connection" } diff --git a/canyon_macros/Cargo.toml b/canyon_macros/Cargo.toml index 58b97550..93695087 100755 --- a/canyon_macros/Cargo.toml +++ b/canyon_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "canyon_macros" -version = "0.1.2" +version = "0.2.0" edition = "2021" documentation = "https://zerodaycode.github.io/canyon-book/" homepage = "https://github.com/zerodaycode/Canyon-SQL" @@ -18,6 +18,6 @@ proc-macro2 = "1.0.27" futures = "0.3.21" tokio = { version = "1.9.0", features = ["full"] } -canyon_observer = { version = "0.1.2", path = "../canyon_observer" } -canyon_crud = { version = "0.1.2", path = "../canyon_crud" } -canyon_connection = { version = "0.1.2", path = "../canyon_connection" } +canyon_observer = { version = "0.2.0", path = "../canyon_observer" } +canyon_crud = { version = "0.2.0", path = "../canyon_crud" } +canyon_connection = { version = "0.2.0", path = "../canyon_connection" } diff --git a/canyon_observer/Cargo.toml b/canyon_observer/Cargo.toml index d6424714..cb4bd353 100644 --- a/canyon_observer/Cargo.toml +++ b/canyon_observer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "canyon_observer" -version = "0.1.2" +version = "0.2.0" edition = "2021" documentation = "https://zerodaycode.github.io/canyon-book/" homepage = "https://github.com/zerodaycode/Canyon-SQL" @@ -23,5 +23,5 @@ quote = "1.0.9" partialdebug = "0.2.0" # Internal dependencies -canyon_crud = { version = "0.1.2", path = "../canyon_crud" } -canyon_connection = { version = "0.1.2", path = "../canyon_connection" } +canyon_crud = { version = "0.2.0", path = "../canyon_crud" } +canyon_connection = { version = "0.2.0", path = "../canyon_connection" } diff --git a/canyon_sql/Cargo.toml b/canyon_sql/Cargo.toml index e2ae054f..0a13a101 100755 --- a/canyon_sql/Cargo.toml +++ b/canyon_sql/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "canyon_sql" -version = "0.1.2" +version = "0.2.0" edition = "2021" authors = ["Alex Vergara, Gonzalo Busto"] documentation = "https://zerodaycode.github.io/canyon-book/" @@ -13,7 +13,7 @@ description = "A Rust ORM and QueryBuilder" async-trait = { version = "0.1.50" } # Project crates -canyon_macros = { version = "0.1.2", path = "../canyon_macros" } -canyon_observer = { version = "0.1.2", path = "../canyon_observer" } -canyon_crud = { version = "0.1.2", path = "../canyon_crud" } -canyon_connection = { version = "0.1.2", path = "../canyon_connection" } +canyon_macros = { version = "0.2.0", path = "../canyon_macros" } +canyon_observer = { version = "0.2.0", path = "../canyon_observer" } +canyon_crud = { version = "0.2.0", path = "../canyon_crud" } +canyon_connection = { version = "0.2.0", path = "../canyon_connection" } diff --git a/tests/Cargo.toml b/tests/Cargo.toml index bdb58930..f2e83953 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tests" -version = "0.1.2" +version = "0.2.0" edition = "2021" publish = false