Skip to content

Commit

Permalink
v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
skanaar committed Aug 31, 2020
1 parent 8e261c2 commit 7c1e609
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [0.10.0] - 2020-08-31

### New features
- Table is a new classifier type that displays its compartments in a uniform grid.
Set the first row-break with a double pipe `||`.
- Non-boxy shapes are laid out properly. Ellipses, rhombuses, and cylinders (<usecase>, <choice>, and <database>) no longer intersect awkwardly with the arrows.

### Bug fixes
- fixed bug where SVG did not support bold text
- fixed bug where SVG did not track lineWidth in push/pop of graphic state

## [0.9.0] - 2020-08-26

- fixed bug where labels could extend outside bounding box
Expand Down
2 changes: 1 addition & 1 deletion dist/nomnoml.js
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ var nomnoml;
nomnoml.render(graphics, config, layout, measurer.setFont);
return { config: config };
}
nomnoml.version = '0.9.0';
nomnoml.version = '0.10.0';
function draw(canvas, code, scale) {
return parseAndRender(code, nomnoml.skanaar.Canvas(canvas), canvas, scale || 1);
}
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nomnoml",
"version": "0.9.0",
"version": "0.10.0",
"description": "The sassy UML renderer that generates diagrams from text",
"homepage": "http://www.nomnoml.com",
"author": "Daniel Kallin <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion src/nomnoml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ namespace nomnoml {
return { config: config }
}

export var version = '0.9.0'
export var version = '0.10.0'

export function draw(canvas: HTMLCanvasElement, code: string, scale: number): { config: Config } {
return parseAndRender(code, skanaar.Canvas(canvas), canvas, scale || 1)
Expand Down

0 comments on commit 7c1e609

Please sign in to comment.