Skip to content

Commit 00e26b8

Browse files
author
Sergio García Prado
committed
v0.5.1
1 parent 2f621a2 commit 00e26b8

File tree

25 files changed

+333
-458
lines changed

25 files changed

+333
-458
lines changed

packages/core/minos-microservice-aggregate/HISTORY.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,8 @@
6464
* Rename `AggregateDiff` as `Event`.
6565
* Create the `Aggregate` base class, with the purpose to move the business logic from the `minos.cqrs.CommandService` to this brand-new class.
6666
* Refactor internal module hierarchy.
67-
* Minor changes.
67+
* Minor changes.
68+
69+
## 0.5.1 (2022-02-03)
70+
71+
* Fix bug related with dependency specification.

packages/core/minos-microservice-aggregate/minos/aggregate/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__author__ = "Minos Framework Devs"
22
__email__ = "[email protected]"
3-
__version__ = "0.5.0"
3+
__version__ = "0.5.1"
44

55
from .actions import (
66
Action,

packages/core/minos-microservice-aggregate/poetry.lock

Lines changed: 95 additions & 151 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core/minos-microservice-aggregate/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "minos-microservice-aggregate"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "The Aggregate pattern of the Minos Framework"
55
readme = "README.md"
66
repository = "https://github.com/minos-framework/minos-python"
@@ -31,8 +31,8 @@ include = [
3131

3232
[tool.poetry.dependencies]
3333
python = "^3.9"
34-
minos-microservice-common = "^0.4.0"
35-
minos-microservice-networks = "^0.4.0"
34+
minos-microservice-common = "^0.5.0"
35+
minos-microservice-networks = "^0.5.0"
3636

3737
[tool.poetry.dev-dependencies]
3838
minos-microservice-common = { path = "../minos-microservice-common", develop = true }

packages/core/minos-microservice-cqrs/HISTORY.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,8 @@
6363

6464
# 0.5.0 (2022-02-03)
6565

66-
* Minor changes.
66+
* Minor changes.
67+
68+
## 0.5.1 (2022-02-03)
69+
70+
* Fix bug related with dependency specification.

packages/core/minos-microservice-cqrs/minos/cqrs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__author__ = "Minos Framework Devs"
22
__email__ = "[email protected]"
3-
__version__ = "0.5.0"
3+
__version__ = "0.5.1"
44

55
from .exceptions import (
66
MinosCqrsException,

packages/core/minos-microservice-cqrs/poetry.lock

Lines changed: 62 additions & 118 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core/minos-microservice-cqrs/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "minos-microservice-cqrs"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "The CQRS pattern of the Minos Framework"
55
readme = "README.md"
66
repository = "https://github.com/minos-framework/minos-python"
@@ -31,9 +31,9 @@ include = [
3131

3232
[tool.poetry.dependencies]
3333
python = "^3.9"
34-
minos-microservice-aggregate = "^0.4.0"
35-
minos-microservice-common = "^0.4.0"
36-
minos-microservice-networks = "^0.4.0"
34+
minos-microservice-aggregate = "^0.5.0"
35+
minos-microservice-common = "^0.5.0"
36+
minos-microservice-networks = "^0.5.0"
3737
dependency-injector = "^4.34.0"
3838

3939
[tool.poetry.dev-dependencies]

packages/core/minos-microservice-networks/HISTORY.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,4 +203,9 @@ History
203203

204204
* Extract `kafka` related code to the `minos-broker-kafka` plugin.
205205
* Extract `minos-discovery` related code to the `minos-discovery-minos` plugin.
206-
* Minor changes.
206+
* Minor changes.
207+
208+
0.5.1 (2022-02-03)
209+
------------------
210+
211+
* Fix bug related with dependency specification.

packages/core/minos-microservice-networks/minos/networks/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__author__ = "Minos Framework Devs"
22
__email__ = "[email protected]"
3-
__version__ = "0.5.0"
3+
__version__ = "0.5.1"
44

55
from .brokers import (
66
REQUEST_HEADERS_CONTEXT_VAR,

0 commit comments

Comments
 (0)