Skip to content

Commit

Permalink
Fix: Typo in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
pylover committed Aug 17, 2021
1 parent 098aee1 commit 09d5e07
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/jsdist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
folder: build/jsdist
target-folder: jsdist
clean: false
silent: false
- name: Install SSH key
run: |
mkdir ~/.ssh
Expand All @@ -38,7 +39,7 @@ jobs:
chmod 600 ~/.ssh/cdn_id_rsa
- name: Deploy to Javascript files to CDN
run: scp -i ~/.ssh/cdn_id_rsa -o ConnectTimeout=15 -P ${{ secrets.DOBISEL_PORT }} build/jsdist/adia*.tar.gz cdn@${{ secrets.DOBISEL_ADDR }}:/var/www/cdn1/adia
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

jsdist_index:
name: Create Javadcript distributions index
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ Output:
render ASCII diagrams.

Currently, only sequence diagrams are supported, but the roadmap is to support
two more types of diagrams: `fork` (#42) and `class` (#41).
two more types of diagrams: `fork` (pylover/adia#42) and `class`
(pylover/adia#41).

## Get Closer!

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__ = '2.0.0'
__version__ = '2.0.1'
__all__ = [
'Diagram',
'SequenceDiagram',
Expand Down

0 comments on commit 09d5e07

Please sign in to comment.