Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.0.0 #153

Merged
merged 6 commits into from
Oct 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
Changelog
---------

1.0.0 (October 12, 2024)
+++++++++++++++++++++

- Upgrade Mermaid to 11.2.0
- Add support for ELK diagrams
- Add support for name parameter
- Add passthrough of mermaid frontmatter
- Convert to native namespace package
- Drop support for Python 3.7
- Convert default placeholder from div to pre
- Fix for tempfile encoding when containing non ascii characters
- Fix for mermaid sequence config arguments
- Default to jsdelivr (previously unpkg) for JS asset CDN

See full `set of changes <https://github.com/mgaitan/sphinxcontrib-mermaid/compare/1.0.0...0.9.2>`_.


0.9.2 (May 28, 2023)
+++++++++++++++++++++

Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ authors = [{name = "Martín Gaitán", email = "gaitan@gmail.com"}]
description="Mermaid diagrams in yours Sphinx powered docs"
readme = "README.rst"
license = { text = "BSD" }
version = "0.9.2"
requires-python = ">=3.9"
version = "1.0.0"
requires-python = ">=3.8"
keywords = ["sphinx", "mermaid", "diagrams", "documentation"]

classifiers = [
Expand Down Expand Up @@ -40,6 +40,7 @@ dependencies = [
[project.urls]
Repository = "https://github.com/mgaitan/sphinxcontrib-mermaid"
Homepage = "https://github.com/mgaitan/sphinxcontrib-mermaid"
Changelog = "https://github.com/mgaitan/sphinxcontrib-mermaid/blob/master/CHANGELOG.rst"

[project.optional-dependencies]
test = [
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__import__("setuptools").setup()
__import__("setuptools").setup()
3 changes: 2 additions & 1 deletion sphinxcontrib/mermaid/autoclassdiag.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import inspect

from sphinx.util import ExtensionError, import_object
from sphinx.errors import ExtensionError
from sphinx.util import import_object

from .exceptions import MermaidError

Expand Down