Skip to content

Commit

Permalink
Merge pull request #495 from minos-framework/0.8.0
Browse files Browse the repository at this point in the history
0.8.0.dev2 (2)
  • Loading branch information
Sergio García Prado authored Jun 3, 2022
2 parents dd05212 + 667f98a commit 8efd0c4
Show file tree
Hide file tree
Showing 44 changed files with 1,291 additions and 1,410 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = "Minos Framework Devs"
__email__ = "hey@minos.run"
__version__ = "0.8.0.dev1"
__version__ = "0.8.0.dev2"

from .actions import (
Action,
Expand Down
164 changes: 78 additions & 86 deletions packages/core/minos-microservice-aggregate/poetry.lock

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions packages/core/minos-microservice-aggregate/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "minos-microservice-aggregate"
version = "0.8.0.dev1"
version = "0.8.0.dev2"
description = "The Aggregate pattern of the Minos Framework"
readme = "README.md"
repository = "https://github.com/minos-framework/minos-python"
Expand Down Expand Up @@ -31,10 +31,10 @@ include = [

[tool.poetry.dependencies]
python = "^3.9"
minos-microservice-common = { version ="^0.8.0*", allow-prereleases = true }
minos-microservice-networks = { version ="^0.8.0*", allow-prereleases = true }
minos-microservice-transactions = { version ="^0.8.0*", allow-prereleases = true }
minos-microservice-saga = { version ="^0.8.0*", allow-prereleases = true }
minos-microservice-common = "^0.8.0.dev"
minos-microservice-networks = "^0.8.0.dev"
minos-microservice-transactions = "^0.8.0.dev"
minos-microservice-saga = "^0.8.0.dev"
cached-property = "^1.5.2"

[tool.poetry.dev-dependencies]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""The common core of the Minos Framework."""
__author__ = "Minos Framework Devs"
__email__ = "hey@minos.run"
__version__ = "0.8.0.dev1"
__version__ = "0.8.0.dev2"

from .builders import (
BuildableMixin,
Expand Down
142 changes: 67 additions & 75 deletions packages/core/minos-microservice-common/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/core/minos-microservice-common/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "minos-microservice-common"
version = "0.8.0.dev1"
version = "0.8.0.dev2"
description = "The common core of the Minos Framework"
readme = "README.md"
repository = "https://github.com/minos-framework/minos-python"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = "Minos Framework Devs"
__email__ = "hey@minos.run"
__version__ = "0.8.0.dev1"
__version__ = "0.8.0.dev2"

from .exceptions import (
MinosCqrsException,
Expand Down
168 changes: 80 additions & 88 deletions packages/core/minos-microservice-cqrs/poetry.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions packages/core/minos-microservice-cqrs/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "minos-microservice-cqrs"
version = "0.8.0.dev1"
version = "0.8.0.dev2"
description = "The CQRS pattern of the Minos Framework"
readme = "README.md"
repository = "https://github.com/minos-framework/minos-python"
Expand Down Expand Up @@ -31,9 +31,9 @@ include = [

[tool.poetry.dependencies]
python = "^3.9"
minos-microservice-aggregate = { version ="^0.8.0*", allow-prereleases = true }
minos-microservice-common = { version ="^0.8.0*", allow-prereleases = true }
minos-microservice-networks = { version ="^0.8.0*", allow-prereleases = true }
minos-microservice-aggregate = "^0.8.0.dev"
minos-microservice-common = "^0.8.0.dev"
minos-microservice-networks = "^0.8.0.dev"

[tool.poetry.dev-dependencies]
minos-microservice-common = { path = "../minos-microservice-common", develop = true }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = "Minos Framework Devs"
__email__ = "hey@minos.run"
__version__ = "0.8.0.dev1"
__version__ = "0.8.0.dev2"

from .brokers import (
REQUEST_HEADERS_CONTEXT_VAR,
Expand Down
150 changes: 71 additions & 79 deletions packages/core/minos-microservice-networks/poetry.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions packages/core/minos-microservice-networks/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "minos-microservice-networks"
version = "0.8.0.dev1"
version = "0.8.0.dev2"
description = "The networks core of the Minos Framework"
readme = "README.md"
repository = "https://github.com/minos-framework/minos-python"
Expand Down Expand Up @@ -31,8 +31,8 @@ include = [

[tool.poetry.dependencies]
python = "^3.9"
minos-microservice-common = { version ="^0.8.0*", allow-prereleases = true }
minos-microservice-transactions = { version ="^0.8.0*", allow-prereleases = true }
minos-microservice-common = "^0.8.0.dev"
minos-microservice-transactions = "^0.8.0.dev"
crontab = "^0.23.0"

[tool.poetry.dev-dependencies]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = "Minos Framework Devs"
__email__ = "hey@minos.run"
__version__ = "0.8.0.dev1"
__version__ = "0.8.0.dev2"

from .context import (
SagaContext,
Expand Down
156 changes: 74 additions & 82 deletions packages/core/minos-microservice-saga/poetry.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions packages/core/minos-microservice-saga/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "minos-microservice-saga"
version = "0.8.0.dev1"
version = "0.8.0.dev2"
description = "The SAGA pattern of the Minos Framework"
readme = "README.md"
repository = "https://github.com/minos-framework/minos-python"
Expand Down Expand Up @@ -31,9 +31,9 @@ include = [

[tool.poetry.dependencies]
python = "^3.9"
minos-microservice-transactions = { version ="^0.8.0*", allow-prereleases = true }
minos-microservice-common = { version ="^0.8.0*", allow-prereleases = true }
minos-microservice-networks = { version ="^0.8.0*", allow-prereleases = true }
minos-microservice-transactions = "^0.8.0.dev"
minos-microservice-common = "^0.8.0.dev"
minos-microservice-networks = "^0.8.0.dev"
cached-property = "^1.5.2"

[tool.poetry.dev-dependencies]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = "Minos Framework Devs"
__email__ = "hey@minos.run"
__version__ = "0.8.0.dev1"
__version__ = "0.8.0.dev2"

from .contextvars import (
TRANSACTION_CONTEXT_VAR,
Expand Down
180 changes: 86 additions & 94 deletions packages/core/minos-microservice-transactions/poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/core/minos-microservice-transactions/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "minos-microservice-transactions"
version = "0.8.0.dev1"
version = "0.8.0.dev2"
description = "The transactions core of the Minos Framework"
readme = "README.md"
repository = "https://github.com/minos-framework/minos-python"
Expand Down Expand Up @@ -31,7 +31,7 @@ include = [

[tool.poetry.dependencies]
python = "^3.9"
minos-microservice-common = { version ="^0.8.0*", allow-prereleases = true }
minos-microservice-common = "^0.8.0.dev"
cached-property = "^1.5.2"

[tool.poetry.dev-dependencies]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = "Minos Framework Devs"
__email__ = "hey@minos.run"
__version__ = "0.8.0.dev1"
__version__ = "0.8.0.dev2"

from .common import (
KafkaBrokerBuilderMixin,
Expand Down
Loading

0 comments on commit 8efd0c4

Please sign in to comment.