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"