From c90ef46ede966d59a595576ac33b5981d690908b Mon Sep 17 00:00:00 2001 From: Josh Karpel Date: Fri, 28 Jun 2024 22:12:38 -0500 Subject: [PATCH] changelog and docs --- docs/changelog.md | 2 ++ synthesize/cli.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/changelog.md b/docs/changelog.md index 3533eb1..3bcaafb 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -14,6 +14,8 @@ and environment variables into target commands. Arguments and environment variables can be specified at either the flow, node, or target level, with the most specific taking precedence. +- [#43](https://github.com/JoshKarpel/synthesize/pull/43) + Mermaid diagrams can be generated for a flow using the `--mermaid` option. ### Changed diff --git a/synthesize/cli.py b/synthesize/cli.py index 82c2800..0f55619 100644 --- a/synthesize/cli.py +++ b/synthesize/cli.py @@ -39,7 +39,7 @@ def run( ), mermaid: bool = Option( default=False, - help="If enabled, output the flow as a Mermaid diagram, and don't run the flow.", + help="If enabled, output a description of the flow as a Mermaid diagram, and don't run the flow.", ), dry: bool = Option( default=False,