Skip to content

Commit

Permalink
Bump to 1.0.1 (production)
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurent Franceschetti committed Jul 12, 2023
1 parent b167c41 commit f455c57
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions mermaid2/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,11 @@ def on_config(self, config):
# the full config info for the plugin is there
# we copy it into our own variable, to keep it accessible
self._full_config = config
# here we use the standard self.config property:
# (this can get confusing...)
# Storing the arguments to be passed to the Javascript library;
# they are found under `mermaid2:arguments` in the config file:
self._mermaid_args = self.config['arguments']
# Here we used the standard self.config property
# (this can get confusing...)
assert isinstance(self.mermaid_args, dict)
info("Initialization arguments:", self.mermaid_args)
# info on the javascript library:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages


VERSION = '1.0.0-alpha'
VERSION = '1.0.1'

# required if you want to run tests
# pip install 'mkdocs-mermaid2-plugin[test]'
Expand Down

0 comments on commit f455c57

Please sign in to comment.