Skip to content

Commit

Permalink
v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pylover committed Aug 9, 2021
1 parent fe8c4b4 commit 2e3ad93
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,10 @@ $(WEBCLINIC_BUILD)/adia.bundle.js: $(BRYTHON_FILES) \
jsdist: $(WEBCLINIC_BUILD)/adia.bundle.js $(WEBCLINIC_BUILD)/adia.js
mkdir -p $(JSDIST)
cp $(WEBCLINIC_BUILD)/adia.bundle.js $(JSDIST)/adia.bundle-$(ADIA_VER).js
cp $(WEBCLINIC_BUILD)/lib.js $(JSDIST)/adia.lib-$(ADIA_VER).js
cp $(WEBCLINIC_BUILD)/adia.js $(JSDIST)/adia-$(ADIA_VER).js
ln -sf adia.bundle-$(ADIA_VER).js $(JSDIST)/adia.bundle.js
ln -sf adia.lib-$(ADIA_VER).js $(JSDIST)/adia.lib.js
ln -sf adia-$(ADIA_VER).js $(JSDIST)/adia.js

.PHONY: webclinic
Expand Down
2 changes: 1 addition & 1 deletion adia/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from .renderer import Renderer


__version__ = '0.4.0'
__version__ = '0.4.1'
__all__ = [
'Diagram',
'SequenceDiagram',
Expand Down
3 changes: 2 additions & 1 deletion documentation/javascriptapi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ before each commit.
This page aims to demonstrate how to use the ``adia`` inside your javascript
project.

For the first you have to generate ``adia.bundle.js`` using:
For the first you have to grab the ``adia.bundle.js`` from
https://pylover.github.io/adia/about or generate ``adia.bundle.js`` using:

.. code-block:: bash
Expand Down

0 comments on commit 2e3ad93

Please sign in to comment.