Skip to content

Commit

Permalink
v3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pylover committed Aug 19, 2021
1 parent bdcf67f commit 8aef50f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
chmod 600 ~/.ssh/cdn_id_rsa
- name: Deploy to Javascript files to CDN
run: scp -r -i ~/.ssh/cdn_id_rsa -o ConnectTimeout=15 -P ${{ secrets.DOBISEL_PORT }} build/jsdist/* cdn@${{ secrets.DOBISEL_ADDR }}:/var/www/cdn1/adia
run: scp -r -i ~/.ssh/cdn_id_rsa -o ConnectTimeout=25 -P ${{ secrets.DOBISEL_PORT }} build/jsdist/* cdn@${{ secrets.DOBISEL_ADDR }}:/var/www/cdn1/adia

jsdist_index:
name: Create Javadcript distributions index
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__ = '3.0.0'
__version__ = '3.0.1'
__all__ = [
'Diagram',
'SequenceDiagram',
Expand Down
2 changes: 1 addition & 1 deletion documentation/javascriptapi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ as the below:
let statusArea = document.getElementById('status');
let versionArea = document.getElementById('version');
/* Create ADia instance */
/* ADia configuration */
window.aDia.delay = 10
window.aDia.addHook('init', (aDia) => {
versionArea.innerText = `ADia version: ${aDia.__version__}`
Expand Down
2 changes: 1 addition & 1 deletion webclinic/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
let statusArea = document.getElementById('status');
let versionArea = document.getElementById('version');

/* Create ADia instance */
/* ADia configuration */
window.aDia.delay = 10
window.aDia.addHook('init', (aDia) => {
versionArea.innerText = `ADia version: ${aDia.__version__}`
Expand Down

0 comments on commit 8aef50f

Please sign in to comment.