Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
skanaar committed Sep 14, 2020
1 parent 3be4273 commit 8ac5745
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [1.1.0] - 2020-09-14

- Node name is attached to SVG shapes with a `data-name` attribute. Can be used for interactive diagrams.

## [1.0.1] - 2020-09-11

- Tweaked the text measurement heuristic for better handling of long texts.
Expand Down
2 changes: 1 addition & 1 deletion dist/nomnoml.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ var nomnoml;
})(nomnoml || (nomnoml = {}));
var nomnoml;
(function (nomnoml) {
nomnoml.version = '1.0.1';
nomnoml.version = '1.1.0';
function fitCanvasSize(canvas, rect, zoom) {
canvas.width = rect.width * zoom;
canvas.height = rect.height * zoom;
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": "1.0.1",
"version": "1.1.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 @@ -13,7 +13,7 @@ interface Nomnoml {

namespace nomnoml {

export var version = '1.0.1'
export var version = '1.1.0'

export interface SetFont {
(config: Config, isBold: string, isItalic?: string): void
Expand Down

0 comments on commit 8ac5745

Please sign in to comment.