Skip to content

Commit

Permalink
doc: release v2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
haidaraM committed Dec 2, 2023
1 parent ddff5d8 commit ba9fb0b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
12 changes: 6 additions & 6 deletions ansibleplaybookgrapher/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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
Expand Down

0 comments on commit ba9fb0b

Please sign in to comment.