diff --git a/changelog.md b/changelog.md index 2a47a2e..4cff096 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,9 @@ # Changelog +## [1.1.1] - 2020-09-21 + +- Fix bug when setting background color with `#background:` + ## [1.1.0] - 2020-09-14 - Node name is attached to SVG shapes with a `data-name` attribute. Can be used for interactive diagrams. diff --git a/dist/nomnoml.js b/dist/nomnoml.js index 73b70e7..c3f9764 100644 --- a/dist/nomnoml.js +++ b/dist/nomnoml.js @@ -222,7 +222,7 @@ var nomnoml; })(nomnoml || (nomnoml = {})); var nomnoml; (function (nomnoml) { - nomnoml.version = '1.1.0'; + nomnoml.version = '1.1.1'; function fitCanvasSize(canvas, rect, zoom) { canvas.width = rect.width * zoom; canvas.height = rect.height * zoom; diff --git a/package-lock.json b/package-lock.json index aa75146..d2756e3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "nomnoml", - "version": "1.1.0", + "version": "1.1.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index f017610..b206b22 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nomnoml", - "version": "1.1.0", + "version": "1.1.1", "description": "The sassy UML renderer that generates diagrams from text", "homepage": "http://www.nomnoml.com", "author": "Daniel Kallin ", diff --git a/src/nomnoml.ts b/src/nomnoml.ts index 27c5ec3..9897ff7 100644 --- a/src/nomnoml.ts +++ b/src/nomnoml.ts @@ -13,7 +13,7 @@ interface Nomnoml { namespace nomnoml { - export var version = '1.1.0' + export var version = '1.1.1' export interface SetFont { (config: Config, isBold: string, isItalic?: string): void