From 5dd546a1bc03cc4914c1987c5fcec283aae724ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Gait=C3=A1n?= Date: Sat, 25 Feb 2023 19:28:13 -0300 Subject: [PATCH] bump 0.8.1 --- CHANGELOG.rst | 9 +++++++-- README.rst | 5 +---- setup.py | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 02cf16f..2b85faa 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Changelog --------- +0.8.1 (Feb 25, 2023) ++++++++++++++++++++++ + +- Default to Mermaid 9.4.0 as 10.0 introduced incompatible changes. + See `the discussion `_. + 0.8 (Feb 9, 2023) +++++++++++++++++++++ @@ -10,8 +16,7 @@ Changelog - Drop support for Python 3.6 - Black formatting - -Full set of changes: [`0.7.1...0.8`](https://github.com/mgaitan/sphinxcontrib-mermaid/compare/0.7.1...0.8) +See `full set of changes `_. 0.7.1 (July 17, 2021) diff --git a/README.rst b/README.rst index e8ea798..4157bbb 100644 --- a/README.rst +++ b/README.rst @@ -120,10 +120,7 @@ Config values ``mermaid_version`` - The version of mermaid that will be used to parse ``raw`` output in HTML files. This should match a version available on https://unpkg.com/browse/mermaid/. - - The default is ``"9.4.0"``. If you need a newer version, you'll need to -add the custom initialization code using ``mermaid_init_js`` + The version of mermaid that will be used to parse ``raw`` output in HTML files. This should match a version available on https://unpkg.com/browse/mermaid/. The default is ``"9.4.0"``. If you need a newer version, you'll need to add the custom initialization. See below. If it's set to ``""``, the lib won't be automatically included from the CDN service and you'll need to add it as a local file in ``html_js_files``. For instance, if you download the lib to `_static/js/mermaid.js`, in ``conf.py``:: diff --git a/setup.py b/setup.py index fa2788d..9f6767b 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ readme = open("README.rst", encoding="utf-8").read() changes = open("CHANGELOG.rst", encoding="utf-8").read() -version = "0.8" +version = "0.8.1" def long_description():