From f9e15343dc39b445b9c214e78fc843f01008aad3 Mon Sep 17 00:00:00 2001 From: Mohamed El Mouctar HAIDARA Date: Sat, 7 Sep 2024 10:29:46 +0200 Subject: [PATCH] doc: update changelog and version 2.3.0 --- CHANGELOG.md | 2 +- README.md | 3 ++- ansibleplaybookgrapher/__init__.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37b8150..d583770 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# 2.3.0 (Unreleased) +# 2.3.0 (2024-09-07) ## What's Changed diff --git a/README.md b/README.md index da6edd8..c9b4d0c 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,8 @@ At the time of writing, two renderers are supported: 2. `mermaid-flowchart`: Generate the graph in [Mermaid](https://mermaid.js.org/syntax/flowchart.html) format. You can directly embed the graph in your markdown and GitHub ( and [other integrations](https://mermaid.js.org/ecosystem/integrations.html)) will render it. -3. `json`: Generate a JSON representation of the graph to be used by other tools. +3. `json`: Generate a JSON representation of the graph to be used by other tools. The corresponding JSON schema + is [here.](https://github.com/haidaraM/ansible-playbook-grapher/tree/main/tests/fixtures/json-schemas) If you are interested to support more renderers, feel free to create an issue or raise a PR based on the existing renderers. diff --git a/ansibleplaybookgrapher/__init__.py b/ansibleplaybookgrapher/__init__.py index a16d010..530fc70 100644 --- a/ansibleplaybookgrapher/__init__.py +++ b/ansibleplaybookgrapher/__init__.py @@ -1,2 +1,2 @@ -__version__ = "2.3.0-dev" +__version__ = "2.3.0" __prog__ = "ansible-playbook-grapher"