Skip to content

Commit f2dd319

Browse files
author
Sergio García Prado
committed
v0.5.0
1 parent d5963fc commit f2dd319

File tree

21 files changed

+70
-21
lines changed

21 files changed

+70
-21
lines changed

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

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,14 @@
5454
## 0.4.1 (2022-01-31)
5555

5656
* Update `README.md`.
57+
58+
59+
## 0.5.0 (2022-02-03)
60+
61+
* Rename `Aggregate` as `RootEntity`.
62+
* Rename `AggregateRef` as `ExternalEntity`.
63+
* Rename `ModelRef` as `Ref`.
64+
* Rename `AggregateDiff` as `Event`.
65+
* Create the `Aggregate` base class, with the purpose to move the business logic from the `minos.cqrs.CommandService` to this brand-new class.
66+
* Refactor internal module hierarchy.
67+
* Minor changes.

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.4.1"
3+
__version__ = "0.5.0"
44

55
from .actions import (
66
Action,

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "minos-microservice-aggregate"
3-
version = "0.4.1"
4-
description = "Python Package for Minos Microservices containing all the Aggregate stuff"
3+
version = "0.5.0"
4+
description = "The Aggregate pattern of the Minos Framework"
55
readme = "README.md"
66
repository = "https://github.com/minos-framework/minos-python"
77
homepage = "http://www.minos.run/"

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,3 +274,8 @@ History
274274
------------------
275275

276276
* Update `README.md`.
277+
278+
0.5.0 (2022-02-03)
279+
------------------
280+
281+
* Minor changes.

packages/core/minos-microservice-common/minos/common/__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.4.1"
3+
__version__ = "0.5.0"
44

55
from .configuration import (
66
BROKER,

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "minos-microservice-common"
3-
version = "0.4.1"
4-
description = "Python Package with common Classes and Utilities used in Minos Microservices."
3+
version = "0.5.0"
4+
description = "The common core of the Minos Framework"
55
readme = "README.md"
66
repository = "https://github.com/minos-framework/minos-python"
77
homepage = "http://www.minos.run/"

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,7 @@
6060
# 0.4.1 (2022-01-31)
6161

6262
* Update `README.md`.
63+
64+
# 0.5.0 (2022-02-03)
65+
66+
* Minor changes.

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.4.1"
3+
__version__ = "0.5.0"
44

55
from .exceptions import (
66
MinosCqrsException,

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "minos-microservice-cqrs"
3-
version = "0.4.1"
4-
description = "Minos Microservice CQRS package"
3+
version = "0.5.0"
4+
description = "The CQRS pattern of the Minos Framework"
55
readme = "README.md"
66
repository = "https://github.com/minos-framework/minos-python"
77
homepage = "http://www.minos.run/"

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,3 +196,11 @@ History
196196
------------------
197197

198198
* Update `README.md`.
199+
200+
201+
0.5.0 (2022-02-03)
202+
------------------
203+
204+
* Extract `kafka` related code to the `minos-broker-kafka` plugin.
205+
* Extract `minos-discovery` related code to the `minos-discovery-minos` plugin.
206+
* Minor changes.

0 commit comments

Comments
 (0)