Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down Expand Up @@ -67,7 +67,7 @@ proc-macro2 = "1.0.27"


[workspace.package]
version = "0.4.2"
version = "0.5.0"
edition = "2021"
authors = ["Alex Vergara<[email protected]>, Gonzalo Busto Musi<[email protected]>"]
documentation = "https://zerodaycode.github.io/canyon-book/"
Expand Down