Skip to content

Commit 480e0bc

Browse files
author
Sergio García Prado
committed
v0.4.0
1 parent 4760ae0 commit 480e0bc

File tree

27 files changed

+115
-71
lines changed

27 files changed

+115
-71
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
project = 'Minos Python'
1919
copyright = "2021, Clariteia"
20-
author = "Clariteia Devs"
20+
author = "Minos Framework Devs"
2121

2222
language = None
2323

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,9 @@
4444

4545
* Remove the `data` wrapper from the `IncrementalSet`'s avro serialization.
4646
* Remove the `data` wrapper from the `ValueObjectSet`'s avro serialization.
47-
* Remove the `data` wrapper from the `EntitySet`'s avro serialization.
47+
* Remove the `data` wrapper from the `EntitySet`'s avro serialization.
48+
49+
## 0.4.0 (2022-01-27)
50+
51+
* Be compatible with `minos-microservice-common~=0.4.0`.
52+
* Be compatible with `minos-microservice-networks~=0.4.0`.

packages/core/minos-microservice-aggregate/docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# General information about the project.
6161
project = "Minos Microservice Aggregate"
6262
copyright = "2021, Clariteia"
63-
author = "Clariteia Devs"
63+
author = "Minos Framework Devs"
6464

6565
# The version info for the project you're documenting, acts as replacement
6666
# for |version| and |release|, also used in various other places throughout
@@ -147,7 +147,7 @@
147147
# (source start file, target name, title, author, documentclass
148148
# [howto, manual, or own class]).
149149
latex_documents = [
150-
(master_doc, "minos.tex", "Minos Microservice Aggregate Documentation", "Clariteia Devs", "manual"),
150+
(master_doc, "minos.tex", "Minos Microservice Aggregate Documentation", "Minos Framework Devs", "manual"),
151151
]
152152

153153

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
__author__ = """Clariteia Devs"""
2-
__email__ = "[email protected]"
3-
__version__ = "0.2.4"
1+
__author__ = "Minos Framework Devs"
2+
__email__ = "[email protected]"
3+
__version__ = "0.4.0"
44

55
from .contextvars import (
66
IS_REPOSITORY_SERIALIZATION_CONTEXT_VAR,

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

Lines changed: 4 additions & 4 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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[tool.poetry]
22
name = "minos-microservice-aggregate"
3-
version = "0.2.4"
3+
version = "0.4.0"
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/"
8-
authors = ["Clariteia Devs <[email protected]>"]
8+
authors = ["Minos Framework Devs <[email protected]>"]
99
license = "MIT"
1010
classifiers = [
1111
"Development Status :: 2 - Pre-Alpha",
@@ -31,8 +31,8 @@ include = [
3131

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

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

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,4 +263,9 @@ History
263263
0.3.4 (2022-01-11)
264264
--------------------
265265

266-
* Add `batch_mode: bool` argument to manage if the `avro` serialization is performed for a single model or a batch of models.
266+
* Add `batch_mode: bool` argument to manage if the `avro` serialization is performed for a single model or a batch of models.
267+
268+
0.4.0 (2022-01-27)
269+
------------------
270+
271+
* Add waiting time before destroying the `minos.common.MinosPool` acquired instances.

packages/core/minos-microservice-common/docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# General information about the project.
6161
project = "Minos Microservice Common"
6262
copyright = "2021, Clariteia"
63-
author = "Clariteia Devs"
63+
author = "Minos Framework Devs"
6464

6565
# The version info for the project you're documenting, acts as replacement
6666
# for |version| and |release|, also used in various other places throughout
@@ -147,7 +147,7 @@
147147
# (source start file, target name, title, author, documentclass
148148
# [howto, manual, or own class]).
149149
latex_documents = [
150-
(master_doc, "minos.tex", "Minos Microservice Common Documentation", "Clariteia Devs", "manual"),
150+
(master_doc, "minos.tex", "Minos Microservice Common Documentation", "Minos Framework Devs", "manual"),
151151
]
152152

153153

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
__author__ = """Clariteia Devs"""
2-
__email__ = "[email protected]"
3-
__version__ = "0.3.4"
1+
__author__ = "Minos Framework Devs"
2+
__email__ = "[email protected]"
3+
__version__ = "0.4.0"
44

55
from .configuration import (
66
BROKER,

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

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

0 commit comments

Comments
 (0)