Skip to content

Commit

Permalink
v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
skanaar committed Sep 21, 2020
1 parent 159182d commit 83b0bcd
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.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.
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.1.0';
nomnoml.version = '1.1.1';
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.1.0",
"version": "1.1.1",
"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.1.0'
export var version = '1.1.1'

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

0 comments on commit 83b0bcd

Please sign in to comment.