diff --git a/.cz.toml b/.cz.toml index e11e5555..67558d4c 100644 --- a/.cz.toml +++ b/.cz.toml @@ -1,5 +1,5 @@ [tool.commitizen] -version = "5.0.5" +version = "5.0.6" version_files = [ "Cargo.toml", "base/Cargo.toml", diff --git a/CHANGELOG.md b/CHANGELOG.md index ce1c5939..543ee4d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## v5.0.6 (2024-04-09) + ## v5.0.5 (2024-04-09) ## v5.0.4 (2024-04-09) diff --git a/Cargo.toml b/Cargo.toml index a11e0e3b..1bb9fe4b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ resolver = "2" [workspace.package] -version = "5.0.5" +version = "5.0.6" edition = "2021" authors = ["Samuel Galvão Elias "] license = "Apache-2.0" diff --git a/adapters/mem_db/Cargo.toml b/adapters/mem_db/Cargo.toml index 119ef286..34d66ad2 100644 --- a/adapters/mem_db/Cargo.toml +++ b/adapters/mem_db/Cargo.toml @@ -14,9 +14,9 @@ readme.workspace = true [dependencies] -myc-core = { version = "5.0.5", path = "../../core" } -mycelium-base = { version = "5.0.5", path = "../../base" } -mycelium-config = { version = "5.0.5", path = "../../config" } +myc-core = { version = "5.0.6", path = "../../core" } +mycelium-base = { version = "5.0.6", path = "../../base" } +mycelium-config = { version = "5.0.6", path = "../../config" } env_logger.workspace = true log.workspace = true diff --git a/adapters/prisma/Cargo.toml b/adapters/prisma/Cargo.toml index 201f5662..d221566e 100644 --- a/adapters/prisma/Cargo.toml +++ b/adapters/prisma/Cargo.toml @@ -14,9 +14,9 @@ readme.workspace = true [dependencies] -myc-core = { version = "5.0.5", path = "../../core" } -mycelium-base = { version = "5.0.5", path = "../../base" } -mycelium-config = { version = "5.0.5", path = "../../config" } +myc-core = { version = "5.0.6", path = "../../core" } +mycelium-base = { version = "5.0.6", path = "../../base" } +mycelium-config = { version = "5.0.6", path = "../../config" } async-trait.workspace = true chrono.workspace = true diff --git a/adapters/service/Cargo.toml b/adapters/service/Cargo.toml index 6c3709d6..588c2c34 100644 --- a/adapters/service/Cargo.toml +++ b/adapters/service/Cargo.toml @@ -14,8 +14,8 @@ readme.workspace = true [dependencies] -myc-core = { version = "5.0.5", path = "../../core" } -mycelium-base = { version = "5.0.5", path = "../../base" } +myc-core = { version = "5.0.6", path = "../../core" } +mycelium-base = { version = "5.0.6", path = "../../base" } async-trait.workspace = true env_logger.workspace = true diff --git a/adapters/smtp/Cargo.toml b/adapters/smtp/Cargo.toml index 2c09c67b..ae60cb7c 100644 --- a/adapters/smtp/Cargo.toml +++ b/adapters/smtp/Cargo.toml @@ -14,9 +14,9 @@ readme.workspace = true [dependencies] -myc-core = { version = "5.0.5", path = "../../core" } -mycelium-base = { version = "5.0.5", path = "../../base" } -mycelium-config = { version = "5.0.5", path = "../../config" } +myc-core = { version = "5.0.6", path = "../../core" } +mycelium-base = { version = "5.0.6", path = "../../base" } +mycelium-config = { version = "5.0.6", path = "../../config" } async-trait.workspace = true env_logger.workspace = true diff --git a/config/Cargo.toml b/config/Cargo.toml index 63386b73..70a4c212 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -18,7 +18,7 @@ readme.workspace = true [dependencies] -mycelium-base = { version = "5.0.5", path = "../base" } +mycelium-base = { version = "5.0.6", path = "../base" } serde.workspace = true serde_yaml.workspace = true diff --git a/core/Cargo.toml b/core/Cargo.toml index d434d3a8..2ba98fb9 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -18,8 +18,8 @@ readme.workspace = true [dependencies] -mycelium-base = { version = "5.0.5", path = "../base" } -mycelium-config = { version = "5.0.5", path = "../config" } +mycelium-base = { version = "5.0.6", path = "../base" } +mycelium-config = { version = "5.0.6", path = "../config" } async-trait.workspace = true chrono.workspace = true diff --git a/http_tools/Cargo.toml b/http_tools/Cargo.toml index ac952340..002fe34b 100644 --- a/http_tools/Cargo.toml +++ b/http_tools/Cargo.toml @@ -13,10 +13,10 @@ readme.workspace = true [dependencies] -myc-core = { version = "5.0.5", path = "../core" } -mycelium-base = { version = "5.0.5", path = "../base" } -mycelium-config = { version = "5.0.5", path = "../config" } -mycelium-service = { version = "5.0.5", path = "../adapters/service" } +myc-core = { version = "5.0.6", path = "../core" } +mycelium-base = { version = "5.0.6", path = "../base" } +mycelium-config = { version = "5.0.6", path = "../config" } +mycelium-service = { version = "5.0.6", path = "../adapters/service" } actix-web.workspace = true actix-web-httpauth.workspace = true diff --git a/ports/api/Cargo.toml b/ports/api/Cargo.toml index ce286293..a4d12541 100644 --- a/ports/api/Cargo.toml +++ b/ports/api/Cargo.toml @@ -26,14 +26,14 @@ connection-string = "0.1.14" [dependencies] -myc-core = { version = "5.0.5", path = "../../core" } -mycelium-base = { version = "5.0.5", path = "../../base" } -mycelium-config = { version = "5.0.5", path = "../../config" } -mycelium-http-tools = { version = "5.0.5", path = "../../http_tools" } -mycelium-memory-db = { version = "5.0.5", path = "../../adapters/mem_db" } -mycelium-service = { version = "5.0.5", path = "../../adapters/service" } -mycelium-prisma = { version = "5.0.5", path = "../../adapters/prisma" } -mycelium-smtp = { version = "5.0.5", path = "../../adapters/smtp" } +myc-core = { version = "5.0.6", path = "../../core" } +mycelium-base = { version = "5.0.6", path = "../../base" } +mycelium-config = { version = "5.0.6", path = "../../config" } +mycelium-http-tools = { version = "5.0.6", path = "../../http_tools" } +mycelium-memory-db = { version = "5.0.6", path = "../../adapters/mem_db" } +mycelium-service = { version = "5.0.6", path = "../../adapters/service" } +mycelium-prisma = { version = "5.0.6", path = "../../adapters/prisma" } +mycelium-smtp = { version = "5.0.6", path = "../../adapters/smtp" } actix-web.workspace = true actix-web-httpauth.workspace = true diff --git a/ports/cli/Cargo.toml b/ports/cli/Cargo.toml index 97bf25c6..7245bfc9 100644 --- a/ports/cli/Cargo.toml +++ b/ports/cli/Cargo.toml @@ -18,10 +18,10 @@ readme.workspace = true [dependencies] -myc-core = { version = "5.0.5", path = "../../core" } -mycelium-base = { version = "5.0.5", path = "../../base" } -mycelium-prisma = { version = "5.0.5", path = "../../adapters/prisma" } -mycelium-smtp = { version = "5.0.5", path = "../../adapters/smtp" } +myc-core = { version = "5.0.6", path = "../../core" } +mycelium-base = { version = "5.0.6", path = "../../base" } +mycelium-prisma = { version = "5.0.6", path = "../../adapters/prisma" } +mycelium-smtp = { version = "5.0.6", path = "../../adapters/smtp" } env_logger.workspace = true log.workspace = true