diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bdad1dc..555be516 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,12 @@ Year format is defined as: `YYYY-m-d` ## [Unreleased] +## [0.5.0 - 2023 - 12 - 10] + +### Feature + +- Introduced support to work with MySQL Databases + ## [0.4.2 - 2023 - 05 - 02] ### Bugfix diff --git a/Cargo.toml b/Cargo.toml index c5063ad6..1351412a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,11 +35,11 @@ mysql_common = { workspace = true, optional = true } [workspace.dependencies] -canyon_crud = { version = "0.4.2", path = "canyon_crud" } -canyon_connection = { version = "0.4.2", path = "canyon_connection" } -canyon_entities = { version = "0.4.2", path = "canyon_entities" } -canyon_migrations = { version = "0.4.2", path = "canyon_migrations"} -canyon_macros = { version = "0.4.2", path = "canyon_macros" } +canyon_crud = { version = "0.5.0", path = "canyon_crud" } +canyon_connection = { version = "0.5.0", path = "canyon_connection" } +canyon_entities = { version = "0.5.0", path = "canyon_entities" } +canyon_migrations = { version = "0.5.0", path = "canyon_migrations"} +canyon_macros = { version = "0.5.0", path = "canyon_macros" } tokio = { version = "1.27.0", features = ["full"] } tokio-util = { version = "0.7.4", features = ["compat"] } @@ -67,7 +67,7 @@ proc-macro2 = "1.0.27" [workspace.package] -version = "0.4.2" +version = "0.5.0" edition = "2021" authors = ["Alex Vergara, Gonzalo Busto Musi"] documentation = "https://zerodaycode.github.io/canyon-book/"