Skip to content

Commit

Permalink
Merge pull request #153 from timkpaine/tkp/1
Browse files Browse the repository at this point in the history
Release 1.0.0
  • Loading branch information
timkpaine authored Oct 12, 2024
2 parents ae25530 + 10272e2 commit 55c56cc
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
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

0 comments on commit 55c56cc

Please sign in to comment.