diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d2d3a98..e74682cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# 2.1.1 (2023-12-02) + +## What's Changed + +* fix: pin to ansible-core 2.15.5 before fixing the grapher +* chore(deps): bump pytest from 7.4.2 to 7.4.3 by @dependabot in https://github.com/haidaraM/ansible-playbook-grapher/pull/160 +* chore(deps): update black requirement from ~=23.9 to ~=23.10 by @dependabot in https://github.com/haidaraM/ansible-playbook-grapher/pull/161 +* chore(deps): bump stefanzweifel/git-auto-commit-action from 4 to 5 by @dependabot in https://github.com/haidaraM/ansible-playbook-grapher/pull/159 +* chore(deps): update black requirement from ~=23.10 to ~=23.11 by @dependabot in https://github.com/haidaraM/ansible-playbook-grapher/pull/163 + + # 2.1.0 (2023-10-01) ## What's Changed diff --git a/ansibleplaybookgrapher/__init__.py b/ansibleplaybookgrapher/__init__.py index 7802e408..1a66b1bc 100644 --- a/ansibleplaybookgrapher/__init__.py +++ b/ansibleplaybookgrapher/__init__.py @@ -27,7 +27,7 @@ from .graph_model import PlaybookNode, PlayNode, TaskNode, RoleNode, BlockNode from .parser import PlaybookParser -__version__ = "2.1.0" +__version__ = "2.1.1" __prog__ = "ansible-playbook-grapher" display = Display() @@ -41,11 +41,11 @@ def __init__(self, playbook_filenames: List[str]): self.playbook_filenames = playbook_filenames def parse( - self, - include_role_tasks: bool = False, - tags: List[str] = None, - skip_tags: List[str] = None, - group_roles_by_name: bool = False, + self, + include_role_tasks: bool = False, + tags: List[str] = None, + skip_tags: List[str] = None, + group_roles_by_name: bool = False, ) -> Tuple[List[PlaybookNode], Dict[RoleNode, Set[PlayNode]]]: """ Parses all the provided playbooks