From 5900854c10ef677e073a8f54ba49fed5ffac25d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Garc=C3=ADa=20Prado?= Date: Tue, 9 Nov 2021 17:29:36 +0100 Subject: [PATCH] v0.1.1 --- HISTORY.md | 6 ++++++ minos/networks/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 15165897..bee7c24b 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -120,3 +120,9 @@ History ------------------ * Add `minos-microservice-common>=0.2.0` compatibility. + +0.1.1 (2021-11-09) +------------------ + +* Add `REPLY_TOPIC_CONTEXT_VAR` and integrate with `DynamicHandlerPool`. +* Add support for `post_fn` callbacks following the same strategy as in `pre_fn` callbacks. diff --git a/minos/networks/__init__.py b/minos/networks/__init__.py index 9e9420d8..d82ad291 100644 --- a/minos/networks/__init__.py +++ b/minos/networks/__init__.py @@ -1,6 +1,6 @@ __author__ = """Clariteia Devs""" __email__ = "devs@clariteia.com" -__version__ = "0.1.0" +__version__ = "0.1.1" from .brokers import ( REPLY_TOPIC_CONTEXT_VAR, diff --git a/pyproject.toml b/pyproject.toml index 5e05c0c1..59516d17 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "minos_microservice_networks" -version = "0.1.0" +version = "0.1.1" description = "Python Package with the common network classes and utilities used in Minos Microservice." readme = "README.md" repository = "https://github.com/clariteia/minos_microservice_network"