Skip to content

Commit 0da7a02

Browse files
author
Sergio García Prado
committed
v0.4.1
1 parent f5a6a6a commit 0da7a02

File tree

15 files changed

+38
-15
lines changed

15 files changed

+38
-15
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,7 @@
5050

5151
* Be compatible with `minos-microservice-common~=0.4.0`.
5252
* Be compatible with `minos-microservice-networks~=0.4.0`.
53+
54+
## 0.4.1 (2022-01-31)
55+
56+
* Update `README.md`.

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.0"
3+
__version__ = "0.4.1"
44

55
from .contextvars import (
66
IS_REPOSITORY_SERIALIZATION_CONTEXT_VAR,

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[tool.poetry]
22
name = "minos-microservice-aggregate"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
description = "Python Package for Minos Microservices containing all the Aggregate stuff"
55
readme = "README.md"
66
repository = "https://github.com/minos-framework/minos-python"
77
homepage = "http://www.minos.run/"
88
authors = ["Minos Framework Devs <[email protected]>"]
99
license = "MIT"
1010
classifiers = [
11-
"Development Status :: 2 - Pre-Alpha",
11+
"Development Status :: 4 - Beta",
1212
"Intended Audience :: Developers",
1313
"Natural Language :: English",
1414
"Programming Language :: Python :: 3",

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,3 +269,8 @@ History
269269
------------------
270270

271271
* Add waiting time before destroying the `minos.common.MinosPool` acquired instances.
272+
273+
0.4.1 (2022-01-31)
274+
------------------
275+
276+
* Update `README.md`.

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.0"
3+
__version__ = "0.4.1"
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,14 +1,14 @@
11
[tool.poetry]
22
name = "minos-microservice-common"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
description = "Python Package with common Classes and Utilities used in Minos Microservices."
55
readme = "README.md"
66
repository = "https://github.com/minos-framework/minos-python"
77
homepage = "http://www.minos.run/"
88
authors = ["Minos Framework Devs <[email protected]>"]
99
license = "MIT"
1010
classifiers = [
11-
"Development Status :: 2 - Pre-Alpha",
11+
"Development Status :: 4 - Beta",
1212
"Intended Audience :: Developers",
1313
"Natural Language :: English",
1414
"Programming Language :: Python :: 3",

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,7 @@
5656
* Be compatible with `minos-microservice-common~=0.4.0`.
5757
* Be compatible with `minos-microservice-aggregate~=0.4.0`.
5858
* Be compatible with `minos-microservice-networks~=0.4.0`.
59+
60+
# 0.4.1 (2022-01-31)
61+
62+
* Update `README.md`.

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.0"
3+
__version__ = "0.4.1"
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,14 +1,14 @@
11
[tool.poetry]
22
name = "minos-microservice-cqrs"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
description = "Minos Microservice CQRS package"
55
readme = "README.md"
66
repository = "https://github.com/minos-framework/minos-python"
77
homepage = "http://www.minos.run/"
88
authors = ["Minos Framework Devs <[email protected]>"]
99
license = "MIT"
1010
classifiers = [
11-
"Development Status :: 2 - Pre-Alpha",
11+
"Development Status :: 4 - Beta",
1212
"Intended Audience :: Developers",
1313
"Natural Language :: English",
1414
"Programming Language :: Python :: 3",

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,3 +191,8 @@ History
191191
* Refactor `DynamicBroker` and `DynamicBrokerPool` as `BrokerClient` and `BrokerClientPool`. The new `BrokerClient` has a `send(message: BrokerMessage) -> Awaitable[None]` method for sending messages and a `receive() -> Awaitable[BrokerMessage]` to receive them.
192192
* Implement a builder pattern on `BrokerPublisher`
193193
* Be compatible with `minos-microservice-common~=0.4.0`.
194+
195+
0.4.1 (2022-01-31)
196+
------------------
197+
198+
* Update `README.md`.

0 commit comments

Comments
 (0)