diff --git a/CHANGELOG.md b/CHANGELOG.md index 553182e..2d5e22e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2 +1,3 @@ -- ENHANCEMENT - - Dont be too restrictive and allow max. one empty line at the end of yaml files ([#7](https://github.com/xoxys/ansible-later/issues/7)) +- BUGFIX + - Controls like `when` used at block level will be added as metadata to each task inside this block [#9](https://github.com/xoxys/ansible-later/issues/9) + - Commands can be used in place of modules if the task use register [#8](https://github.com/xoxys/ansible-later/issues/8) diff --git a/ansiblelater/__init__.py b/ansiblelater/__init__.py index 18fdc14..fab0e4c 100644 --- a/ansiblelater/__init__.py +++ b/ansiblelater/__init__.py @@ -1,6 +1,6 @@ __author__ = "Robert Kaussow" __project__ = "ansible-later" -__version__ = "0.1.3" +__version__ = "0.1.4" __license__ = "MIT" __maintainer__ = "Robert Kaussow" __email__ = "mail@geeklabor.de"