Skip to content

Commit

Permalink
bump: 5.0.6 → 5.0.7 [skip-ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
sgelias committed Apr 12, 2024
1 parent 144ab1b commit a33b7cd
Show file tree
Hide file tree
Showing 12 changed files with 34 additions and 32 deletions.
2 changes: 1 addition & 1 deletion .cz.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.commitizen]
version = "5.0.6"
version = "5.0.7"
version_files = [
"Cargo.toml",
"base/Cargo.toml",
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## v5.0.7 (2024-04-11)

## v5.0.6 (2024-04-09)

## v5.0.5 (2024-04-09)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ resolver = "2"

[workspace.package]

version = "5.0.6"
version = "5.0.7"
edition = "2021"
authors = ["Samuel Galvão Elias <[email protected]>"]
license = "Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions adapters/mem_db/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ readme.workspace = true

[dependencies]

myc-core = { version = "5.0.6", path = "../../core" }
mycelium-base = { version = "5.0.6", path = "../../base" }
mycelium-config = { version = "5.0.6", path = "../../config" }
myc-core = { version = "5.0.7", path = "../../core" }
mycelium-base = { version = "5.0.7", path = "../../base" }
mycelium-config = { version = "5.0.7", path = "../../config" }

env_logger.workspace = true
log.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions adapters/prisma/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ readme.workspace = true

[dependencies]

myc-core = { version = "5.0.6", path = "../../core" }
mycelium-base = { version = "5.0.6", path = "../../base" }
mycelium-config = { version = "5.0.6", path = "../../config" }
myc-core = { version = "5.0.7", path = "../../core" }
mycelium-base = { version = "5.0.7", path = "../../base" }
mycelium-config = { version = "5.0.7", path = "../../config" }

async-trait.workspace = true
chrono.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions adapters/service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ readme.workspace = true

[dependencies]

myc-core = { version = "5.0.6", path = "../../core" }
mycelium-base = { version = "5.0.6", path = "../../base" }
myc-core = { version = "5.0.7", path = "../../core" }
mycelium-base = { version = "5.0.7", path = "../../base" }

async-trait.workspace = true
env_logger.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions adapters/smtp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ readme.workspace = true

[dependencies]

myc-core = { version = "5.0.6", path = "../../core" }
mycelium-base = { version = "5.0.6", path = "../../base" }
mycelium-config = { version = "5.0.6", path = "../../config" }
myc-core = { version = "5.0.7", path = "../../core" }
mycelium-base = { version = "5.0.7", path = "../../base" }
mycelium-config = { version = "5.0.7", path = "../../config" }

async-trait.workspace = true
env_logger.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ readme.workspace = true

[dependencies]

mycelium-base = { version = "5.0.6", path = "../base" }
mycelium-base = { version = "5.0.7", path = "../base" }

serde.workspace = true
serde_yaml.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ readme.workspace = true

[dependencies]

mycelium-base = { version = "5.0.6", path = "../base" }
mycelium-config = { version = "5.0.6", path = "../config" }
mycelium-base = { version = "5.0.7", path = "../base" }
mycelium-config = { version = "5.0.7", path = "../config" }

async-trait.workspace = true
chrono.workspace = true
Expand Down
8 changes: 4 additions & 4 deletions http_tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ readme.workspace = true

[dependencies]

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" }
myc-core = { version = "5.0.7", path = "../core" }
mycelium-base = { version = "5.0.7", path = "../base" }
mycelium-config = { version = "5.0.7", path = "../config" }
mycelium-service = { version = "5.0.7", path = "../adapters/service" }

actix-web.workspace = true
actix-web-httpauth.workspace = true
Expand Down
16 changes: 8 additions & 8 deletions ports/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ connection-string = "0.1.14"

[dependencies]

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" }
myc-core = { version = "5.0.7", path = "../../core" }
mycelium-base = { version = "5.0.7", path = "../../base" }
mycelium-config = { version = "5.0.7", path = "../../config" }
mycelium-http-tools = { version = "5.0.7", path = "../../http_tools" }
mycelium-memory-db = { version = "5.0.7", path = "../../adapters/mem_db" }
mycelium-service = { version = "5.0.7", path = "../../adapters/service" }
mycelium-prisma = { version = "5.0.7", path = "../../adapters/prisma" }
mycelium-smtp = { version = "5.0.7", path = "../../adapters/smtp" }

actix-web.workspace = true
actix-web-httpauth.workspace = true
Expand Down
8 changes: 4 additions & 4 deletions ports/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ readme.workspace = true

[dependencies]

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" }
myc-core = { version = "5.0.7", path = "../../core" }
mycelium-base = { version = "5.0.7", path = "../../base" }
mycelium-prisma = { version = "5.0.7", path = "../../adapters/prisma" }
mycelium-smtp = { version = "5.0.7", path = "../../adapters/smtp" }

env_logger.workspace = true
log.workspace = true
Expand Down

0 comments on commit a33b7cd

Please sign in to comment.