Skip to content

Commit

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

## [1.2.0] - 2020-10-07

- Fixed layout bug when using HIDDEN nodes
- Fixed bug where SVG attributes were not properly escaped
- New association type `_>` that creates a shorter (weightless) edge
- New directive `#gravity: 0` that makes every association weightless
- Type definitions included (typescript .d file)
- Drop ES3 support and target ES5 explicitly

## [1.1.1] - 2020-09-21

- Fix bug when setting background color with `#background:`
Expand Down
2 changes: 1 addition & 1 deletion dist/nomnoml.js
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ var nomnoml;
})(nomnoml || (nomnoml = {}));
var nomnoml;
(function (nomnoml) {
nomnoml.version = '1.1.1';
nomnoml.version = '1.2.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.1.1",
"version": "1.2.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.1.1'
export var version = '1.2.0'

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

0 comments on commit c400ea7

Please sign in to comment.